/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Base Layers */
    --bg-primary: #0A0A0D;
    --bg-secondary: #141417;
    --bg-elevated: rgba(255, 255, 255, 0.04);
    --bg-elevated-hover: rgba(255, 255, 255, 0.07);

    /* Accents */
    --accent-primary: #8B5CF6;
    --accent-secondary: #A78BFA;
    --accent-highlight: #FACC15;

    /* Typography */
    --text-primary: #ECFDF5;
    --text-secondary: #BBF7D0;
    --text-muted: #6EE7B7;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6, #FACC15);
    --gradient-hero: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #FACC15 100%);
    --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));

    /* Glass */
    --glass-bg: rgba(20, 20, 23, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;

    /* Spacing */
    --container-max: 1320px;
    --section-gap: 100px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

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

    /* Font */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--accent-highlight);
}

ul {
    list-style: none;
}

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

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

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s infinite ease-in-out;
}

.particle-1 {
    width: 4px;
    height: 4px;
    background: var(--accent-highlight);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.particle-2 {
    width: 3px;
    height: 3px;
    background: var(--accent-primary);
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.particle-3 {
    width: 5px;
    height: 5px;
    background: var(--accent-secondary);
    top: 40%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle-4 {
    width: 3px;
    height: 3px;
    background: var(--accent-highlight);
    top: 80%;
    left: 60%;
    animation-delay: 1s;
    animation-duration: 15s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.particle-6 {
    width: 2px;
    height: 2px;
    background: var(--accent-highlight);
    top: 70%;
    left: 20%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle-7 {
    width: 3px;
    height: 3px;
    background: var(--accent-secondary);
    top: 30%;
    left: 90%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle-8 {
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    top: 90%;
    left: 40%;
    animation-delay: 7s;
    animation-duration: 16s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
        transform: translateY(-60px) translateX(30px);
    }
    75% {
        opacity: 0.5;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 13, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 13, 0.9);
    border-bottom-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 2000;
    transition: right var(--transition-slow);
}

.mobile-overlay.active {
    right: 0;
}

.mobile-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: rgba(10, 10, 13, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    border-left: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

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

.mobile-cta {
    margin-top: auto;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #0A0A0D;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    color: #0A0A0D;
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 1.1em;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(250, 204, 21, 0.05) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.08);
    top: 10%;
    left: -10%;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(250, 204, 21, 0.05);
    bottom: 10%;
    right: -5%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 520px;
}

.hero-disclaimer {
    padding: 12px 20px;
    background: rgba(250, 204, 21, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.hero-disclaimer p {
    font-size: 13px;
    color: var(--accent-highlight);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 560px;
    width: 100%;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15), transparent 70%);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s infinite ease-in-out;
}

.scroll-text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .hero-title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 16px;
}

.page-hero .hero-description {
    margin: 0 auto;
    max-width: 600px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
    padding: var(--section-gap) 0;
    position: relative;
}

.game-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 80px rgba(139, 92, 246, 0.15),
                0 0 0 1px rgba(139, 92, 246, 0.05);
    transition: all var(--transition-base);
}

.game-container:hover {
    box-shadow: 0 24px 90px rgba(139, 92, 246, 0.2),
                0 0 0 1px rgba(139, 92, 246, 0.1);
    transform: scale(1.005);
}

.game-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1), transparent 70%);
    z-index: -1;
    animation: glowPulse 4s infinite ease-in-out;
}

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

.game-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-xl);
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.game-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.game-info-item:hover {
    background: var(--bg-elevated-hover);
    border-color: rgba(139, 92, 246, 0.2);
}

.game-info-icon {
    font-size: 20px;
}

.game-info-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-gap) 0;
    position: relative;
}

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

.feature-card {
    padding: 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 28px;
}

.feature-title {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    padding: var(--section-gap) 0;
    position: relative;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .section-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

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

.story-visual {
    display: flex;
    justify-content: center;
}

.story-image {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    max-width: 460px;
    width: 100%;
}

/* ============================================
   HOW TO SECTION
   ============================================ */
.howto-section {
    padding: var(--section-gap) 0;
    position: relative;
}

.howto-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.howto-step {
    text-align: center;
    padding: 40px 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    flex: 1;
    max-width: 320px;
    transition: all var(--transition-base);
}

.howto-step:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.2);
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #0A0A0D;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.howto-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    opacity: 0.3;
    flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-gap) 0;
}

.cta-wrapper {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

.cta-legal {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTENT SECTIONS (Inner pages)
   ============================================ */
.content-section {
    padding: 60px 0 var(--section-gap);
}

.content-grid {
    max-width: 900px;
    margin: 0 auto;
}

.content-main {
    max-width: 900px;
    margin: 0 auto;
}

.content-card {
    padding: 48px;
}

.content-card h2 {
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--accent-secondary);
}

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

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

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

.content-card ul li::before {
    content: '→';
    position: absolute;
    left: -4px;
    color: var(--accent-primary);
}

.legal-content h2 {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.styled-list {
    margin-bottom: 24px !important;
}

.styled-list li {
    padding: 8px 0 8px 16px !important;
}

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

.value-item {
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.value-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    margin-top: 0;
}

.value-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.contact-method h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    margin-top: 0;
}

.contact-method p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    font-family: var(--font-primary);
    font-size: 15px;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.form-input::placeholder {
    color: rgba(236, 253, 245, 0.3);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236EE7B7' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

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

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

.form-success {
    padding: 16px 20px;
    background: rgba(110, 231, 183, 0.1);
    border: 1px solid rgba(110, 231, 183, 0.3);
    border-radius: var(--radius-md);
}

.form-success p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   RESPONSIBLE GAMING PAGE
   ============================================ */
.responsible-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.responsible-card {
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.responsible-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    background: var(--bg-elevated-hover);
}

.responsible-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.responsible-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    margin-top: 0;
}

.responsible-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

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

.resource-item {
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.resource-item h3 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 8px;
}

.resource-item p {
    font-size: 14px;
    margin-bottom: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 13, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-highlight);
}

.footer-legal-list li {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-secondary);
}
/* ENDFILE */