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

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 40, 0.9) 100%),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1920') center/cover no-repeat fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 12vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 170, 0, 0.3);
    margin-bottom: 0.2rem;
    animation: glow 3s ease-in-out infinite;
    line-height: 1.1;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.6)); }
}

.subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    color: #888;
    margin-bottom: 2rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.75rem;
}

.fivem-info {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    color: #aaa;
    font-weight: 500;
}

.features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.trust-line {
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    color: #f59e0b;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.features li {
    font-size: clamp(1.1rem, 4.5vw, 1.25rem);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.check {
    color: #4ade80;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(88, 101, 242, 0.4);
    width: auto;
    max-width: 100%;
    cursor: pointer;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

.cta-button:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(88, 101, 242, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
    background: #4752c4;
}

.discord-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.discord-note {
    margin-top: 1.25rem;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    color: #666;
    font-style: italic;
}

/* Tablet */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }

    .subtitle {
        letter-spacing: 0.3em;
        margin-bottom: 1.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        background-attachment: scroll;
    }

    .content {
        padding: 1.25rem;
    }

    .logo {
        letter-spacing: 0.05em;
    }

    .subtitle {
        letter-spacing: 0.25em;
        margin-bottom: 1.25rem;
    }

    .info-box {
        padding: 0.65rem 1rem;
        margin-bottom: 1rem;
    }

    .features {
        margin-bottom: 0.75rem;
    }

    .features li {
        margin-bottom: 0.5rem;
    }

    .trust-line {
        margin-bottom: 1.25rem;
    }

    .cta-button {
        padding: 0.9rem 1.75rem;
        width: 100%;
        max-width: 300px;
    }

    .discord-note {
        margin-top: 0.75rem;
    }
}

/* Small phones */
@media (max-width: 360px) {
    .content {
        padding: 1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .cta-button {
        padding: 0.85rem 1.5rem;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .content {
        padding: 1rem 2rem;
    }

    .subtitle {
        margin-bottom: 1rem;
    }

    .info-box {
        margin-bottom: 1rem;
    }

    .features {
        margin-bottom: 1rem;
    }

    .features li {
        margin-bottom: 0.4rem;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .content {
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    }
}
