/* ============================================
   BestPlaysAU — Electric Pink Design System
   Theme: Electric Pink + Violet + Gold
   Fonts: Sora (headings) + Plus Jakarta Sans (body)
   ============================================ */

:root {
    /* Primary - Hot Pink */
    --primary: #FF006E;
    --primary-light: #FF4D94;
    --primary-dark: #D4005B;
    --primary-ultra: #FF0080;

    /* Secondary - Violet */
    --secondary: #8B5CF6;
    --secondary-light: #A78BFA;
    --secondary-dark: #7C3AED;

    /* Accent - Gold */
    --accent: #FFD166;
    --accent-dark: #F5B800;

    /* Backgrounds */
    --bg-body: #FFF5F8;
    --bg-white: #FFFFFF;
    --bg-dark: #1A0A2E;
    --bg-dark-alt: #240F3D;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFF0F5;
    --bg-pink-soft: #FFF0F5;
    --bg-gradient-hero: linear-gradient(160deg, #1A0A2E 0%, #3D1255 40%, #6B1D6E 70%, #FF006E 100%);

    /* Text */
    --text-dark: #1A1A2E;
    --text-body: #4A4A5A;
    --text-muted: #8B8B9E;
    --text-light: #FFFFFF;
    --text-light-muted: rgba(255, 255, 255, 0.7);

    /* Borders */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-pink: rgba(255, 0, 110, 0.15);
    --border-hover: rgba(255, 0, 110, 0.3);

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-pink: 0 8px 30px rgba(255, 0, 110, 0.2);
    --shadow-pink-lg: 0 16px 50px rgba(255, 0, 110, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF006E, #8B5CF6);
    --gradient-primary-hover: linear-gradient(135deg, #FF4D94, #A78BFA);
    --gradient-hot: linear-gradient(135deg, #FF006E, #FF6B9D);
    --gradient-sunset: linear-gradient(135deg, #FF006E, #FF6B35);
    --gradient-text: linear-gradient(135deg, #FF006E, #8B5CF6);

    /* Fonts */
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-heading: 'Sora', -apple-system, sans-serif;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;

    /* Layout */
    --container-max: 1200px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-body);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #FFD166, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
    background: var(--gradient-primary-hover);
    box-shadow: var(--shadow-pink-lg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}
.btn-white:hover {
    background: var(--bg-pink-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink-lg);
}

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

.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-light);
    transition: color var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}
.nav-links a:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.12);
}
.nav-links a.active {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-links a {
    color: var(--text-muted);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary);
    background: var(--bg-pink-soft);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 14px;
}

.navbar.scrolled .nav-cta {
    box-shadow: var(--shadow-pink);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-light);
    border-radius: 4px;
    transition: all var(--transition);
}
.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    background: var(--bg-gradient-hero);
    padding: 180px 0 120px;
    overflow: hidden;
    text-align: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

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

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: #FF006E;
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: #8B5CF6;
    bottom: -80px;
    left: -80px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: #FFD166;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 12s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(255, 209, 102, 0.12);
    border: 1px solid rgba(255, 209, 102, 0.25);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero .gradient-text {
    background: linear-gradient(135deg, #FFD166, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-light);
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   Provider Marquee
   ============================================ */

.marquee-section {
    background: var(--bg-dark);
    padding: 40px 0;
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.marquee-track {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-logo {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.5);
    transition: filter var(--transition);
}
.marquee-logo:hover {
    filter: brightness(0) invert(1) opacity(0.9);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* ============================================
   Section Common
   ============================================ */

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    background: rgba(255, 0, 110, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Games Section
   ============================================ */

.games-section {
    padding: 100px 0;
    background: var(--bg-body);
}

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

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pink);
    border-color: var(--border-pink);
}

.game-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.game-card:hover .game-card-image img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.badge-trending {
    background: var(--gradient-primary);
    color: var(--text-light);
}
.badge-popular {
    background: var(--gradient-hot);
    color: var(--text-light);
}
.badge-new {
    background: linear-gradient(135deg, #FFD166, #FF9F1C);
    color: var(--text-dark);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 46, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay {
    opacity: 1;
}

.btn-play-overlay {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: var(--shadow-pink-lg);
    transform: scale(0.8);
    transition: transform var(--transition);
}
.game-card:hover .btn-play-overlay {
    transform: scale(1);
}

.game-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.game-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 0, 110, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.game-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.game-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-play {
    width: 100%;
    margin-top: auto;
}

/* ============================================
   Features
   ============================================ */

.features-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--border-pink);
}
.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: rgba(255, 0, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
    transition: all var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-pink);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ============================================
   How It Works
   ============================================ */

.how-section {
    padding: 100px 0;
    background: var(--bg-body);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--border-pink);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-pink);
}

.step-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ============================================
   Community Stats
   ============================================ */

.community-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.community-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2), transparent 70%);
    pointer-events: none;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.community-stat {
    text-align: center;
    padding: 32px 20px;
}

.community-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 0, 110, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-light);
}

.community-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 4px;
}

.community-stat-label {
    font-size: 14px;
    color: var(--text-light-muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--bg-card);
}
.faq-item:hover {
    border-color: var(--border-pink);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-pink);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all var(--transition-fast);
}
.faq-question:hover {
    background: var(--bg-pink-soft);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 100px 0;
    background: var(--bg-body);
}

.cta-card {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    top: -100px;
    right: -50px;
}
.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.3);
    bottom: -60px;
    left: -30px;
}

.cta-card h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-card .btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-dark);
    padding: 72px 0 0;
    color: var(--text-light-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-light);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light-muted);
}

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

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links-group a {
    font-size: 14px;
    color: var(--text-light-muted);
    transition: color var(--transition-fast);
}
.footer-links-group a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light-muted);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    max-width: 640px;
    margin: 0 auto !important;
    line-height: 1.6;
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page-header {
    background: var(--bg-gradient-hero);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.legal-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.legal-page-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-page-header p {
    font-size: 15px;
    color: var(--text-light-muted);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
}
.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content a:hover {
    color: var(--primary-dark);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 10, 46, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        z-index: 5;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 20px;
        color: var(--text-light) !important;
        padding: 12px 24px;
    }
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active span {
        background: var(--text-light) !important;
    }

    /* Hero */
    .hero {
        padding: 140px 0 80px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }

    /* Games */
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    /* Steps */
    .steps-row {
        flex-direction: column;
        gap: 32px;
    }
    .step-connector {
        display: none;
    }
    .step-card {
        max-width: 100%;
    }

    /* Community */
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links-row {
        gap: 40px;
    }

    /* CTA */
    .cta-card {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .community-stat-value {
        font-size: 28px;
    }
    .footer-links-row {
        flex-direction: column;
        gap: 28px;
    }
}
