/* =====================================================
   HELLFIRE GAME - LANDING PAGE STYLES
   ===================================================== */

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: background 0.3s ease;
}

.landing-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

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

.landing-nav .nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-fire);
}

.nav-link.btn-register {
    padding: 10px 25px;
    background: var(--gradient-lava);
    border-radius: 8px;
    color: white;
}

.nav-link.btn-register:hover {
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.5);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(255, 69, 0, 0.5));
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 69, 0, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(255, 69, 0, 0.8));
    }
}

.title-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    margin-top: 10px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Play Store Button */
.btn-play-store {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-play-store:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-play-store svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.btn-text-wrap {
    text-align: left;
}

.btn-small {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

.btn-large {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.btn-play-store.large {
    padding: 18px 40px;
}

.btn-play-store.large svg {
    width: 45px;
    height: 45px;
}

.btn-play-store.large .btn-large {
    font-size: 1.4rem;
}

/* Register Button */
.btn-register-hero {
    display: flex;
    align-items: center;
    padding: 16px 35px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-lava);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-register-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.6);
}

.btn-register-large {
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-lava);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-register-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.6);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-fire);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 10px auto 0;
    border-right: 2px solid var(--fire-outer);
    border-bottom: 2px solid var(--fire-outer);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-fire);
    text-align: center;
    margin-bottom: 15px;
}

.fire-icon {
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Gameplay Section */
.gameplay-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.1) 50%, transparent);
}

.gameplay-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-fire);
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--fire-middle);
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-fire);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.15), transparent);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-fire);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-buttons .btn-play-store.large {
    padding: 16px 35px;
}

.cta-buttons .btn-register-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    height: auto;
    min-height: 60px;
}

/* Footer */
.landing-footer {
    padding: 50px 40px;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    background: rgba(10, 10, 10, 0.8);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-fire);
}

/* Responsive */
@media (max-width: 1024px) {
    .gameplay-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-nav .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link:not(.btn-register) {
        display: none;
    }

    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stats .stat-num {
        font-size: 2rem;
    }

    .section-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .gameplay-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }

    .gallery-overlay {
        transform: translateY(0);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .landing-nav .nav-logo {
        font-size: 1.5rem;
    }

    .title-main {
        font-size: 3.5rem;
    }

    .btn-play-store {
        padding: 12px 20px;
    }

    .btn-register-hero {
        padding: 14px 25px;
    }
}