/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Base Colors */
    --deep-jungle: #0f1f1a;
    --dark-stone: #1c2b26;
    --sandstone: #2f3e37;

    /* Accents */
    --gold: #d4af37;
    --gold-light: #e6c84d;
    --burnt-orange: #c26d2c;
    --warm-amber: #f59e0b;

    /* Supporting */
    --moss-green: #4d7c5a;
    --aged-paper: #e7d9b9;

    /* Text */
    --text-primary: #f5f1e6;
    --text-secondary: #cfc7b0;
    --text-muted: #8a8272;

    /* Layout */
    --max-width: 1400px;
    --header-height: 80px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
    --shadow-deep: 0 8px 40px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--deep-jungle);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--warm-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ========================================
   DUST PARTICLES
   ======================================== */
.dust-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 15s infinite;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 15%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 25%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 35%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 45%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(6) { left: 55%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(7) { left: 65%; animation-delay: 6s; animation-duration: 17s; }
.particle:nth-child(8) { left: 75%; animation-delay: 2.5s; animation-duration: 21s; }
.particle:nth-child(9) { left: 85%; animation-delay: 4.5s; animation-duration: 13s; }
.particle:nth-child(10) { left: 95%; animation-delay: 7s; animation-duration: 18s; }
.particle:nth-child(11) { left: 10%; animation-delay: 8s; animation-duration: 16s; }
.particle:nth-child(12) { left: 20%; animation-delay: 3.5s; animation-duration: 22s; }
.particle:nth-child(13) { left: 30%; animation-delay: 6.5s; animation-duration: 14s; }
.particle:nth-child(14) { left: 40%; animation-delay: 1.5s; animation-duration: 19s; }
.particle:nth-child(15) { left: 50%; animation-delay: 9s; animation-duration: 17s; }
.particle:nth-child(16) { left: 60%; animation-delay: 5.5s; animation-duration: 20s; }
.particle:nth-child(17) { left: 70%; animation-delay: 7.5s; animation-duration: 15s; }
.particle:nth-child(18) { left: 80%; animation-delay: 10s; animation-duration: 18s; }
.particle:nth-child(19) { left: 90%; animation-delay: 0.5s; animation-duration: 21s; }
.particle:nth-child(20) { left: 50%; animation-delay: 11s; animation-duration: 16s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-normal);
    background: rgba(15, 31, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header--scrolled {
    background: rgba(15, 31, 26, 0.92);
    border-bottom-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.logo-dot {
    color: var(--gold);
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.3px;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--warm-amber));
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header__cta {
    flex-shrink: 0;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--warm-amber));
    color: var(--deep-jungle);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
    color: var(--deep-jungle);
}

.btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn--secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 18px;
}

.btn--full {
    width: 100%;
}

/* ========================================
   MOBILE NAV
   ======================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav.active {
    pointer-events: all;
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.mobile-nav.active .mobile-nav__overlay {
    opacity: 1;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--dark-stone);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    padding: 30px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav__title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.mobile-nav__close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.mobile-nav__close:hover {
    color: var(--text-primary);
}

.mobile-nav__compass {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    opacity: 0.5;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 30px;
}

.mobile-nav__link {
    display: block;
    padding: 14px 16px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.08);
}

.mobile-nav__link.active {
    color: var(--gold);
}

.mobile-nav__cta {
    margin-top: auto;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(194, 109, 44, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(77, 124, 90, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--deep-jungle) 0%, rgba(28, 43, 38, 0.8) 50%, var(--deep-jungle) 100%);
}

.hero__rays {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    animation: rayPulse 8s ease-in-out infinite;
}

@keyframes rayPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero__badge-icon {
    font-size: 0.9rem;
}

.hero__title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__disclaimer {
    padding: 16px 20px;
    background: rgba(28, 43, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
}

.hero__disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero__artifact {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artifact-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.artifact-svg {
    width: 100%;
    height: 100%;
}

.artifact-ring--outer {
    animation: rotateRing 30s linear infinite;
    transform-origin: center;
}

.artifact-ring--mid {
    animation: rotateRing 20s linear infinite reverse;
    transform-origin: center;
}

.artifact-ring--inner {
    animation: rotateRing 15s linear infinite;
    transform-origin: center;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(10px); }
}

/* ========================================
   GAME SECTION
   ======================================== */
.game-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--deep-jungle) 0%, rgba(28, 43, 38, 0.4) 50%, var(--deep-jungle) 100%);
}

.game-frame-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.game-frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 3;
}

.corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--gold);
    border-style: solid;
    z-index: 4;
}

.corner--tl {
    top: -1px;
    left: -1px;
    border-width: 3px 0 0 3px;
    border-radius: var(--radius-lg) 0 0 0;
}

.corner--tr {
    top: -1px;
    right: -1px;
    border-width: 3px 3px 0 0;
    border-radius: 0 var(--radius-lg) 0 0;
}

.corner--bl {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 3px 3px;
    border-radius: 0 0 0 var(--radius-lg);
}

.corner--br {
    bottom: -1px;
    right: -1px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 var(--radius-lg) 0;
}

.game-frame-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 30px;
    z-index: 0;
    animation: gameGlow 5s ease-in-out infinite;
}

@keyframes gameGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.game-container {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark-stone);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.game-frame-wrapper:hover {
    transform: scale(1.005);
    transition: transform var(--transition-slow);
}

.game-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

.game-info__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.game-info__icon {
    font-size: 1.2rem;
}

.game-info__divider {
    width: 1px;
    height: 20px;
    background: rgba(212, 175, 55, 0.2);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 14px;
    margin-bottom: 20px;
}

.feature-card__icon {
    font-size: 1.6rem;
}

.feature-card__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card__text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(28, 43, 38, 0.3) 50%, transparent 100%);
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.stat-card__number {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.stat-card__bar {
    height: 3px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-card__bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--warm-amber));
    border-radius: 3px;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-quote {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--aged-paper);
    line-height: 1.9;
    margin: 30px 0;
    padding: 30px 40px;
    position: relative;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
    text-align: left;
    background: rgba(28, 43, 38, 0.4);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0 100px;
    position: relative;
    z-index: 2;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.9), rgba(47, 62, 55, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-card__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card__title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    position: relative;
}

.cta-card__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
    position: relative;
}

.cta-card .btn {
    position: relative;
}

.cta-card__disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    position: relative;
}

/* ========================================
   PAGE HERO (INNER PAGES)
   ======================================== */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(28, 43, 38, 0.3) 0%, transparent 100%);
}

.page-hero__content {
    max-width: 700px;
}

.page-hero__title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-hero__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CONTENT SECTIONS (INNER PAGES)
   ======================================== */
.content-section {
    padding: 0 0 100px;
    position: relative;
    z-index: 2;
}

.content-block {
    margin-bottom: 60px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-block p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-cta {
    margin-top: 30px;
    text-align: center;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.philosophy-card {
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.philosophy-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.philosophy-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.disclaimer-box h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.disclaimer-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    color: var(--text-primary);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.legal-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrap {
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrap .content-title {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 31, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.05);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cfc7b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--dark-stone);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}

.form-success__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h3 {
    font-size: 1.3rem;
    color: var(--gold);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-quick-links li {
    margin-bottom: 10px;
}

.contact-quick-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-quick-links a:hover {
    color: var(--gold);
}

/* ========================================
   RESPONSIBLE GAMING PAGE
   ======================================== */
.responsible-highlight {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.responsible-highlight__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.responsible-highlight h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.responsible-highlight p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.responsible-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.responsible-fact {
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.responsible-fact__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.responsible-fact h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.responsible-fact p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.responsible-list {
    padding-left: 0;
    margin-top: 16px;
}

.responsible-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.responsible-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 5px;
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.resource-card {
    background: linear-gradient(135deg, rgba(28, 43, 38, 0.8), rgba(47, 62, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.resource-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.resource-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    background: rgba(15, 31, 26, 0.8);
    padding: 60px 0 30px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer__col ul li a:hover {
    color: var(--text-primary);
}

.footer__legal {
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
    margin-bottom: 24px;
}

.footer__badges {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.footer__legal-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
/* ENDFILE */