:root {
    --teal-glow: #00E5FF;
    --dark-red: #4A0000;
    --bg-dark: #0a0a0d;
    --text-light: #ffffff;
    --text-muted: #b0b5c0;
    --glass-bg: rgba(10, 10, 15, 0.4);
    --glass-border: rgba(0, 229, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
.main-hook,
.primary-cta {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}



/* Logo Isolé dans le Hero */
.hero-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    height: 90px;
    z-index: 20;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .hero-logo {
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        height: 70px;
    }
}

/* Sections */
section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =============================================
   TRAILER SECTION
   ============================================= */
#trailer {
    background: #000;
    position: relative;
    padding: 6rem 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    /* Aspect ratio 16:9 */
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Overlays */
.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 13, 0.9) 100%);
}

.overlay-red-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.overlay-cyan-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 30, 40, 0.9) 0%, rgba(10, 10, 13, 0.8) 100%);
}

.overlay-teal-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 229, 255, 0.1));
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

/* Layout Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Generic grid helpers */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid {
    gap: 1.5rem;
    align-items: start;
}

.gameplay-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.card-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #4ade80;
    text-shadow: 0 0 12px rgba(74, 222, 128, 0.55);
    text-align: center;
    text-transform: uppercase;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(74, 222, 128, 0.25);
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   HERO BUTTONS
   ============================================= */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.trailer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.trailer-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* =============================================
   HERO STATS & BADGES
   ============================================= */
.hero-stats-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.online-counter-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 25, 0.6);
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e5ff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 229, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.online-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.online-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-badges-row {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    background: rgba(0, 30, 40, 0.5);
    backdrop-filter: blur(5px);
}

.badge-icon {
    font-size: 1rem;
    line-height: 1;
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.8px;
}

/* Hero Section */
.hero-section {
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: inherit;
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
    animation: heroZoomIn 12s ease-out forwards;
    transform-origin: center 40%;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1);
        filter: brightness(0.8) blur(1px);
    }
    5% {
        filter: brightness(1) blur(0);
    }
    100% {
        transform: scale(1.15);
        filter: brightness(1) blur(0);
    }
}

/* Cinematic vignette overlay for hero */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center 40%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: auto auto 1rem auto;
    padding: 1.2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: heroContentFadeIn 2.5s ease-out 0.5s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-hook {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.highlight {
    color: var(--teal-glow);
    text-shadow: 0 0 15px var(--teal-glow);
}

/* Buttons */
.glow-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 229, 255, 0.1);
    color: var(--teal-glow);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border: 2px solid var(--teal-glow);
    border-radius: 4px;
    text-shadow: 0 0 8px var(--teal-glow);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3), inset 0 0 10px rgba(0, 229, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.glow-button:hover {
    background: var(--teal-glow);
    color: #000;
    box-shadow: 0 0 30px var(--teal-glow), inset 0 0 20px rgba(255, 255, 255, 0.5);
    text-shadow: none;
    transform: translateY(-2px);
}

.sound-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--teal-glow);
    border: 2px solid var(--teal-glow);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3), inset 0 0 10px rgba(0, 229, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.5rem;
}

.sound-btn:hover {
    background: var(--teal-glow);
    color: #000;
    box-shadow: 0 0 30px var(--teal-glow), inset 0 0 20px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.social-proof {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #e2e8f0;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}


/* Features Section */
.features-section {
    min-height: 80vh;
}

.gameplay-section {
    background-color: var(--bg-dark);
    padding: 2.5rem 0;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gameplay-cta-wrap {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 1rem;
}

.gameplay-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.section-subtitle {
    color: #00E5FF;
    /* Fallback to teal instead of green to match existing or use #00ff88 */
    color: #4ade80;
    /* Brighter neon green based on screenshot */
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.gameplay-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gameplay-card {
    position: relative;
    height: calc(100vh - 18rem);
    max-height: 420px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.gameplay-card img,
.gameplay-card .gameplay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.5s ease;
}

.gameplay-card:hover img,
.gameplay-card:hover .gameplay-video {
    transform: scale(1.06);
}

.gameplay-card::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 2;
}

.gameplay-card:hover {
    transform: translateY(-10px);
    border-color: #4ade80;
    /* Green glow border */
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
    transition: height 0.4s ease;
}

.gameplay-card:hover .card-overlay {
    height: 85%;
}

/* h3 card titles moved above cards via .card-label */

.gameplay-desc {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    z-index: 3;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gameplay-card:hover .gameplay-desc {
    opacity: 1;
    transform: translateY(0);
}

.gameplay-card:hover h3 {
    transform: translateY(-10px);
}


@media (max-width: 1024px) {
    .gameplay-grid {
        grid-template-columns: 1fr;
    }

    .gameplay-card {
        height: 260px;
        max-height: 260px;
    }

    .gameplay-section {
        height: auto;
        min-height: 100vh;
        padding: 3rem 0;
    }
}

/* Lore Section */
.lore-section {
    min-height: 70vh;
}

.text-left {
    text-align: left;
    margin-bottom: 2rem;
}

.text-panel {
    padding: 3rem;
    text-align: left;
    background: rgba(10, 10, 15, 0.2); /* Increased transparency relative to var(--glass-bg) */
}

.text-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.lore-cta {
    margin-top: 0.5rem;
    display: inline-flex;
}

.align-center {
    align-items: center;
}

/* Specs Section */
.specs-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.specs-section .section-title {
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-card {
    padding: 2rem;
    text-align: left;
}

.spec-card h3 {
    font-size: 1.4rem;
    color: var(--teal-glow);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: flex;
}

.spec-card ul li strong {
    color: var(--text-light);
    display: inline-block;
    width: 90px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .specs-section {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .spec-card {
        padding: 1.25rem;
    }

    .specs-section .section-title {
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .spec-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .spec-card ul li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .spec-card ul li strong {
        width: 80px;
    }
}

/* FAQ Section */
.faq-section {
    min-height: 80vh;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item.border-none {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--teal-glow);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--teal-glow);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background-color: #0b0b0e;
    /* Even darker to mimic screenshot */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background-color: #141416;
    /* Dark gray for the card */
    border-left: 4px solid #facc15;
    /* Yellow/Gold accent border */
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-quote {
    font-size: 1.2rem;
    color: #e5e7eb;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

.author-name {
    color: #facc15;
    /* Matching yellow for name */
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    /* Override orbitron uppercase if applied */
}

.author-title {
    color: #9ca3af;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   TRUST SECTION (Desktop)
   ============================================= */
.trust-section {
    background: linear-gradient(135deg, #020408 0%, #040d14 50%, #020408 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(74, 222, 128, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.overlay-trust {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2,4,8,0.3), rgba(2,4,8,0.6));
}

.trust-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Stats Row */
.trust-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.trust-stat-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: rgba(0, 229, 255, 0.15);
}

.trust-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.trust-stat-num-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
}

.trust-stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 900;
    color: var(--teal-glow);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    line-height: 1;
}

.trust-stat-suffix {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 700;
    color: var(--teal-glow);
    opacity: 0.7;
    line-height: 1;
}

.trust-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .trust-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Award Badges */
.trust-awards-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.trust-award {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    min-width: 180px;
    text-align: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.trust-award:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--teal-glow);
    color: #fff;
    transform: translateY(-4px);
}

.trust-award-icon {
    font-size: 2.2rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

/* Press Quote */
.trust-press {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    border-color: rgba(0, 229, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.trust-press::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 8rem;
    font-family: 'Orbitron', serif;
    color: rgba(0, 229, 255, 0.08);
    line-height: 1;
    pointer-events: none;
}

.trust-press-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.9;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
}

.trust-press-source {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal-glow);
    opacity: 0.8;
}


.final-cta-section {
    min-height: 70vh;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-large {
    font-size: 1.8rem;
    padding: 1.5rem 4rem;
}

.footer {
    text-align: center;
    padding: 2rem;
    background-color: #000;
    color: #555;
    position: relative;
    z-index: 10;
}

/* Particles */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--teal-glow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal-glow), 0 0 20px var(--teal-glow);
    opacity: 0;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}




/* =============================================
   FOG EFFECT (HERO SECTION)
   ============================================= */
.fog-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Behind content (z-index 10) but above background */
    pointer-events: none; /* Don't block clicks */
    top: 0;
    left: 0;
    opacity: 0.6; /* Subtle, light fog */
}

/* We create the fog using two layered, moving background images */
.fog-img {
    position: absolute;
    height: 100vh;
    width: 300vw;
    z-index: 1;
    opacity: 0.7;
    background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog1.png') repeat-x;
    background-size: contain;
    background-position: center 30%; /* Positioned mainly in the middle */
}

.fog-img-first {
    background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog1.png') repeat-x;
    background-size: cover;
    background-position: center;
    animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 25s linear infinite;
}

.fog-img-second {
    background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog2.png') repeat-x;
    background-size: cover;
    background-position: center;
    animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 20s linear infinite;
}

/* Fog Animations */
@keyframes foglayer_01_opacity {
    0% { opacity: 0.1; }
    22% { opacity: 0.3; }
    40% { opacity: 0.15; }
    58% { opacity: 0.25; }
    80% { opacity: 0.1; }
    100% { opacity: 0.1; }
}

@keyframes foglayer_02_opacity {
    0% { opacity: 0.2; }
    25% { opacity: 0.1; }
    50% { opacity: 0.05; }
    80% { opacity: 0.15; }
    100% { opacity: 0.2; }
}

@keyframes foglayer_moveme {
    0% { left: 0; }
    100% { left: -100vw; }
}

/* =============================================
   HOW TO PLAY SECTION
   ============================================= */
.how-to-play-section {
    background: #0d0f12;
    min-height: auto;
    padding: 5rem 0 4rem;
    position: relative;
}

.htp-title {
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: var(--teal-glow);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.htp-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.htp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(0, 229, 255, 0.12);
    background: rgba(12, 14, 18, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    gap: 0.6rem;
    transition: background 0.3s ease;
    position: relative;
}

.htp-card:last-child {
    border-right: none;
}

.htp-card--active {
    background: rgba(0, 229, 255, 0.06);
    border-top: 2px solid var(--teal-glow);
    box-shadow: 0 -4px 20px rgba(0, 229, 255, 0.12);
}

.htp-card:hover {
    background: rgba(0, 229, 255, 0.08);
}

.htp-card-icon {
    color: var(--teal-glow);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.htp-card-icon svg {
    width: 40px;
    height: 40px;
}

.htp-card-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.htp-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
    text-transform: none;
}

.htp-card-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.htp-footnote {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(176, 181, 192, 0.6);
    margin-top: 2.5rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .htp-cards-row {
        grid-template-columns: 1fr;
    }

    .htp-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 229, 255, 0.12);
    }

    .htp-card:last-child {
        border-bottom: none;
    }

    .htp-card--active {
        border-top: none;
        border-left: 3px solid var(--teal-glow);
    }
}

/* =============================================
   FLOATING CTA BUTTON
   ============================================= */
.float-cta {
    position: fixed;
    bottom: 2rem;
    right: -320px; /* Hidden off-screen initially */
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #e8005a 0%, #c0003f 100%);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px 0 0 4px;
    box-shadow: -4px 4px 20px rgba(200, 0, 60, 0.5), 0 2px 8px rgba(0,0,0,0.4);
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.float-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

.float-cta.visible {
    right: 0;
}

.float-cta:hover {
    background: linear-gradient(135deg, #ff1a70 0%, #d4004f 100%);
    box-shadow: -4px 4px 30px rgba(220, 0, 70, 0.7), 0 2px 12px rgba(0,0,0,0.5);
    transform: translateX(-4px);
}

@media (max-width: 600px) {
    .float-cta {
        font-size: 0.72rem;
        padding: 0.75rem 1.2rem;
        letter-spacing: 1.5px;
    }
}
