@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #0099FF;
    --dark: #0a0a0a;
    --dark-soft: #1a1a1a;
    --dark-card: #252525;
    --gray: #3a3a3a;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: var(--dark);
    color: var(--white);
}

/* scrollbar azul custom */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0088ee;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 153, 255, 0.3);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--blue);
}

.discord-btn {
    background: var(--blue);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.discord-btn:hover {
    background: #0088ee;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.5);
}

/* hero seccion principal */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)), 
                url('https://i.blogs.es/2286da/los-santos-gta-v_3840x2160_xtrafondos.com/1366_2000.webp') center/cover no-repeat;
    background-attachment: scroll;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    top: 20px;
    right: 70px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin-bottom: 2rem;
    width: 100%;
    overflow: visible;
}

.title-main {
    font-size: 6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.title-sub {
    font-size: 6rem;
    font-weight: 900;
    color: var(--gray);
    letter-spacing: -2px;
}

.brush-bg {
    background: var(--blue);
    padding: 0.5rem 2rem;
    display: inline-block;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    position: relative;
    transform: rotate(-2deg);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.4);
}

.hero-subtitle {
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.cta-button {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.3);
}

.cta-button:hover {
    background: #0088ee;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 153, 255, 0.5);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* imagen del personaje */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -80px;
    bottom: -21px;
    pointer-events: none;
}

.character-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.diagonal-shape {
    position: absolute;
    top: 0;
    right: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(0, 153, 255, 0.05));
    transform: skewX(-15deg);
}

.como-jugar {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.1rem;
    color: #999;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    display: inline-block;
}

.brush-bg-purple {
    background: var(--blue);
    color: var(--white);
    padding: 1rem 3rem;
    transform: rotate(-1deg);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* tarjetas de pasos */
.step-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 153, 255, 0.3);
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 12px 35px rgba(0, 153, 255, 0.25);
}

.step-card::before {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.5);
}

.step-icon {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-content p {
    color: #aaa;
    line-height: 1.6;
}

.copy-ip-btn {
    margin-top: 1.5rem;
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.copy-ip-btn:hover {
    background: #0088ee;
    transform: translateY(-2px);
}

.copy-ip-btn i {
    margin-right: 0.5rem;
}

.copy-ip-btn.copied {
    background: #00c853;
}

.copy-ip-btn.copied i {
    display: none;
}

.copy-ip-btn.copied::before {
    content: '✓ ';
}

/* about us section */
.sobre-nosotros {
    padding: 6rem 2rem;
    background: var(--dark-soft);
}

.sobre-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--blue);
}

.sobre-text p {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sobre-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.sobre-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    position: relative;
    bottom: -94px;
}

.footer {
    background: var(--dark);
    color: var(--gray);
    text-align: center;
    padding: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-top: 1px solid rgba(0, 153, 255, 0.2);
}

/* responsive para celular */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .title-main, .title-sub {
        font-size: 4rem;
    }
    
    .diagonal-shape {
        display: none;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
}


/* responsive para mobil */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        top: 0;
        right: 0;
    }
    
    .title-main, .title-sub {
        font-size: 3rem;
    }
    
    .brush-bg {
        font-size: 1.3rem;
        padding: 0.4rem 1.5rem;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .diagonal-shape {
        display: none;
    }
    
    .hero-image {
        margin-bottom: 0;
        bottom: 0;
    }
    
    .character-img {
        max-height: 60vh;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .discord-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .brush-bg-purple {
        padding: 0.8rem 2rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .sobre-text h2 {
        font-size: 2rem;
    }
    
    .sobre-img {
        bottom: 0;
        max-width: 80%;
    }
    
    .como-jugar {
        padding: 4rem 1rem;
    }
    
    .sobre-nosotros {
        padding: 4rem 1rem;
    }
}

/* tablets */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .title-main, .title-sub {
        font-size: 2.5rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
}

/* moviles pequeños */
@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }
    
    .nav-links a:not(.discord-btn) {
        display: none;
    }
    
    .title-main, .title-sub {
        font-size: 2rem;
    }
    
    .brush-bg {
        font-size: 1rem;
        padding: 0.3rem 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .brush-bg-purple {
        padding: 0.6rem 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .sobre-text h2 {
        font-size: 1.5rem;
    }
    
    .sobre-text p {
        font-size: 1rem;
    }
    
    .copy-ip-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
}
