/* ==========================================================================
   M98 - MAIN STYLESHEET
   Dark mode cyber gaming theme with electric cyan and neon blue accents
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
    /* Background Colors */
    --bg-primary: #0a0e14;
    --bg-secondary: #0f1419;
    --bg-tertiary: #151c24;
    --bg-hover: #1a2330;
    --bg-card: rgba(15, 20, 25, 0.95);

    /* Text Colors */
    --text-primary: #f0f4f8;
    --text-secondary: #a0aec0;
    --text-muted: #718096;

    /* Accent Colors - Cyan/Blue Theme */
    --accent-primary: #00d4ff;
    --accent-secondary: #0891b2;
    --accent-tertiary: #22d3ee;
    --accent-primary-rgb: 0, 212, 255;

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0891b2 50%, #06b6d4 100%);
    --accent-gradient-hover: linear-gradient(135deg, #22d3ee 0%, #00d4ff 50%, #0891b2 100%);
    --bg-gradient: linear-gradient(180deg, #0a0e14 0%, #0f1419 100%);
    --glow-gradient: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(8, 145, 178, 0.1) 100%);

    /* Border Colors */
    --border-primary: rgba(0, 212, 255, 0.15);
    --border-secondary: rgba(0, 212, 255, 0.25);
    --border-glow: rgba(0, 212, 255, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-intense: 0 0 40px rgba(0, 212, 255, 0.5);

    /* Typography */
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Sarabun', sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

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

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

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

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

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

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
    color: var(--bg-primary);
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 20, 0.92);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.625rem 1rem;
}

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.brand a:hover {
    transform: scale(1.02);
}

.header-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nav-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
    transition: transform var(--transition-normal);
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.08);
}

.nav-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Desktop CTA */
.header-cta {
    display: none;
}

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-intense);
    color: var(--bg-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
}

.mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 0.75rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Hamburger Animation - Open State */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;
}

/* Mobile Menu - Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-secondary);
    padding: 4.5rem 1.25rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    border-left: 1px solid var(--border-primary);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    animation: slideInMenu 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMenu {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-menu.active li a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.nav-menu.active li a::after {
    display: none;
}

.mobile-cta-item {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-primary);
}

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 0.875rem 1rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

/* Tablet and Desktop - 768px+ */
@media (min-width: 768px) {
    .header-container {
        padding: 0.75rem 2rem;
    }

    .header-logo {
        height: 42px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        animation: none;
        border-left: none;
        box-shadow: none;
    }

    .mobile-cta-item {
        display: none;
    }

    .header-cta {
        display: block;
    }
}

/* Large Desktop - 1024px+ */
@media (min-width: 1024px) {
    .header-container {
        padding: 0.875rem 3rem;
    }

    .header-logo {
        height: 46px;
    }

    .nav-menu li a {
        padding: 0.625rem 1.25rem;
    }
}

/* Extra Large - 1280px+ */
@media (min-width: 1280px) {
    .header-container {
        padding: 1rem 4rem;
    }

    .header-logo {
        height: 48px;
    }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer[role="contentinfo"] {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 85px;
    position: relative;
}

footer[role="contentinfo"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.5;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2.5rem 1rem 1.5rem;
}

/* Footer Top - Grid Layout */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Brand Column */
.footer-brand {
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.footer-logo-link:hover {
    transform: scale(1.03);
}

.footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.25));
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.875rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

/* Footer Columns */
.footer-column {
    text-align: center;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 4px;
}

/* Footer Contact */
.footer-contact {
    font-style: normal;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-contact p {
    margin-bottom: 0.375rem;
}

.footer-contact a {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent-tertiary);
}

/* Trust Badges Section */
.footer-trust {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 1.5rem;
    background: var(--glow-gradient);
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    transition: transform var(--transition-fast);
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4));
}

.trust-badge span {
    font-size: 0.75rem;
    text-align: center;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .footer-container {
        padding: 3rem 2rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-column {
        text-align: left;
    }

    .footer-heading::after {
        left: 0;
    }

    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .trust-badges {
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-trust {
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .footer-container {
        padding: 3.5rem 3rem 2rem;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-trust {
        margin-left: -3rem;
        margin-right: -3rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .footer-container {
        padding: 4rem 4rem 2rem;
    }

    .footer-trust {
        margin-left: -4rem;
        margin-right: -4rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: rgba(10, 14, 20, 0.95);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.375rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-fast);
}

/* Secondary Buttons (Login, Register) */
.sticky-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-secondary);
}

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    color: var(--accent-primary);
}

/* Primary Button (Main CTA) */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 2px 12px rgba(0, 212, 255, 0.35);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-intense);
    color: var(--bg-primary);
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
    .sticky-bottom-bar {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .sticky-btn {
        padding: 0.625rem 0.25rem;
        font-size: 0.6875rem;
        border-radius: var(--radius-sm);
    }
}

/* Small Mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .sticky-btn {
        padding: 0.6875rem 0.375rem;
        font-size: 0.75rem;
    }
}

/* Medium Mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .sticky-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .sticky-bottom-bar {
        padding: 0.75rem 1.25rem;
        gap: 0.625rem;
    }

    .sticky-btn {
        padding: 0.8125rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .sticky-bottom-bar {
        padding: 0.875rem 2rem;
        gap: 0.875rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        max-width: 200px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .sticky-bottom-bar {
        justify-content: center;
        padding: 1rem 3rem;
        gap: 1rem;
    }

    .sticky-btn {
        flex: none;
        min-width: 160px;
        max-width: 220px;
        padding: 0.9375rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-intense);
    color: var(--bg-primary);
}

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

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-tertiary);
    border-color: var(--accent-tertiary);
}

.btn-full {
    width: 100%;
}

/* Visually Hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   MAIN CONTENT STYLES
   ========================================================================== */

/* Section Container */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==========================================================================
   HERO SECTION - Pattern 4: Stacked/Vertical
   ========================================================================== */
.hero {
    padding: 2rem 0 3rem;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hero-cta .btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
}

.hero-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-primary);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Responsive */
@media (min-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .hero-cta .btn-large {
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-container {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.0625rem;
    }

    .section-container {
        padding: 0 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 4rem 0 5rem;
    }

    .hero-container {
        padding: 0 3rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-cta .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.0625rem;
    }

    .section-container {
        padding: 0 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1280px) {
    .hero-container {
        padding: 0 4rem;
    }

    .hero-content h1 {
        font-size: 3.25rem;
    }

    .section-container {
        padding: 0 4rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-secondary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glow-gradient);
    border-radius: 50%;
    color: var(--accent-primary);
}

.feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Features Responsive */
@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .features {
        padding: 5rem 0;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }
}

/* ==========================================================================
   GAMES SECTIONS (Slots, Casino, Sports, Lottery)
   ========================================================================== */
.games-section {
    padding: 3rem 0;
}

.games-section.slot-section {
    background: var(--bg-primary);
}

.games-section.casino-section {
    background: var(--bg-secondary);
}

.games-section.sports-section {
    background: var(--bg-primary);
}

.games-section.lottery-section {
    background: var(--bg-secondary);
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.content-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

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

.content-text .btn {
    margin-top: 0.5rem;
}

.content-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Grid Responsive */
@media (min-width: 768px) {
    .games-section {
        padding: 4rem 0;
    }

    .content-text h2 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .games-section {
        padding: 5rem 0;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .content-grid-reverse {
        direction: rtl;
    }

    .content-grid-reverse > * {
        direction: ltr;
    }

    .content-text h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   CASINO SECTION SPECIFIC
   ========================================================================== */
.casino-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.casino-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.casino-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.casino-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.casino-card-icon {
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.casino-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.casino-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.casino-advantages {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.casino-advantages h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.casino-advantages p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.casino-advantages p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .casino-games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .casino-card {
        padding: 1.5rem;
    }

    .casino-advantages {
        padding: 2rem;
    }
}

/* ==========================================================================
   SPORTS SECTION SPECIFIC
   ========================================================================== */
.sports-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.esports-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.esports-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.esports-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .esports-content {
        padding: 2rem;
    }
}

/* ==========================================================================
   DEPOSIT SECTION
   ========================================================================== */
.deposit-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.deposit-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.deposit-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.deposit-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.deposit-table th,
.deposit-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

.deposit-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.deposit-table td {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.deposit-table tbody tr:last-child td {
    border-bottom: none;
}

.deposit-table tbody tr:hover td {
    background: var(--bg-tertiary);
}

.withdrawal-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.withdrawal-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.withdrawal-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .deposit-section {
        padding: 4rem 0;
    }

    .withdrawal-info {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .deposit-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   BONUS SECTION
   ========================================================================== */
.bonus-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-section .section-container {
    position: relative;
    z-index: 1;
}

.bonus-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.bonus-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bonus-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.bonus-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.bonus-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bonus-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.bonus-cta {
    text-align: center;
}

@media (min-width: 480px) {
    .bonus-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .bonus-section {
        padding: 4rem 0;
    }

    .bonus-card {
        padding: 2rem;
    }

    .bonus-value {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .bonus-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   MOBILE ACCESS SECTION
   ========================================================================== */
.mobile-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

@media (min-width: 768px) {
    .mobile-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .mobile-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */
.security-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.security-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    min-width: 140px;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.security-badge:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.security-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.security-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

@media (min-width: 768px) {
    .security-section {
        padding: 4rem 0;
    }

    .security-badges {
        gap: 2rem;
    }

    .security-badge {
        padding: 1.5rem 2rem;
        min-width: 160px;
    }
}

@media (min-width: 1024px) {
    .security-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   SUPPORT SECTION
   ========================================================================== */
.support-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

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

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

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

@media (min-width: 768px) {
    .support-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .support-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   REGISTRATION SECTION
   ========================================================================== */
.registration-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.registration-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.registration-steps {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-primary);
}

.step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.registration-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
}

.registration-note p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .registration-section {
        padding: 4rem 0;
    }

    .step-item {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.125rem;
    }

    .registration-note {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .registration-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

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

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

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

@media (min-width: 768px) {
    .highlights-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .highlights-section {
        padding: 5rem 0;
    }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color var(--transition-normal);
}

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

.faq-item:hover {
    border-color: var(--border-secondary);
}

.faq-item dt {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item dt::before {
    content: 'Q';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.faq-item dd {
    margin: 0;
    padding-left: calc(28px + 0.75rem);
}

.faq-item dd p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-item {
        padding: 1.75rem;
    }

    .faq-item dt {
        font-size: 1.125rem;
    }

    .faq-item dd p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-item {
        padding: 2rem;
    }
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    padding: 3rem 0;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.final-cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.final-cta-buttons .btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
}

@media (min-width: 480px) {
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .final-cta-buttons .btn-large {
        width: auto;
    }
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .final-cta-section p {
        font-size: 1.125rem;
    }

    .final-cta-buttons .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-section {
        padding: 5rem 0;
    }

    .final-cta-section h2 {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   PROMOTIONS PAGE STYLES
   ========================================================================== */

/* Promotions Hero - Pattern 6: Card/Floating Box Over Background */
.promo-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.promo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.promo-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.75) 50%, rgba(10, 14, 20, 0.85) 100%);
}

.promo-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.promo-hero-card {
    background: rgba(15, 20, 25, 0.95);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    max-width: 700px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    backdrop-filter: blur(8px);
}

.promo-hero-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-hero-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.promo-hero-subtext {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.promo-hero-cta .btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
}

/* Promotions Hero Responsive */
@media (min-width: 480px) {
    .promo-hero-card h1 {
        font-size: 1.75rem;
    }

    .promo-hero-cta .btn-large {
        width: auto;
    }
}

@media (min-width: 768px) {
    .promo-hero {
        min-height: 550px;
    }

    .promo-hero-container {
        padding: 4rem 2rem;
    }

    .promo-hero-card {
        padding: 2.5rem;
    }

    .promo-hero-card h1 {
        font-size: 2rem;
    }

    .promo-hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .promo-hero {
        min-height: 600px;
    }

    .promo-hero-container {
        padding: 5rem 3rem;
    }

    .promo-hero-card {
        padding: 3rem;
        max-width: 750px;
    }

    .promo-hero-card h1 {
        font-size: 2.25rem;
    }

    .promo-hero-description {
        font-size: 1.0625rem;
    }

    .promo-hero-cta .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.0625rem;
    }
}

@media (min-width: 1280px) {
    .promo-hero-container {
        padding: 5rem 4rem;
    }

    .promo-hero-card h1 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   PROMOTIONS SECTIONS
   ========================================================================== */
.promo-section {
    padding: 3rem 0;
}

.promo-section:nth-child(odd) {
    background: var(--bg-primary);
}

.promo-section:nth-child(even) {
    background: var(--bg-secondary);
}

/* Promotions Content Grid */
.promo-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.promo-content-grid-reverse {
    direction: ltr;
}

.promo-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.promo-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

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

/* Inline Image */
.promo-inline-image {
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

.promo-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Promotions Lists */
.promo-steps-list,
.promo-conditions-list {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.promo-steps-list li,
.promo-conditions-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.promo-steps-list li::marker {
    color: var(--accent-primary);
    font-weight: 600;
}

.promo-conditions-list {
    list-style: none;
    padding-left: 0;
}

.promo-conditions-list li {
    position: relative;
    padding-left: 1.75rem;
}

.promo-conditions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Highlight Card */
.promo-highlight-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.promo-highlight-card-alt::before {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.promo-highlight-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.promo-highlight-card-alt .promo-highlight-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.promo-highlight-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.promo-highlight-card-alt .promo-highlight-value {
    color: #10b981;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.promo-highlight-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-highlight-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.promo-highlight-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.promo-highlight-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--border-primary);
}

.promo-highlight-features li:last-child {
    border-bottom: none;
}

.promo-highlight-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.promo-highlight-card-alt .promo-highlight-features li::before {
    color: #10b981;
}

/* Cashback Section */
.promo-cashback-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

/* Promotions Table */
.promo-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
    max-width: 800px;
    margin: 0 auto;
}

.promo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.promo-table th,
.promo-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

.promo-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.promo-table td {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.promo-table tbody tr:last-child td {
    border-bottom: none;
}

.promo-table tbody tr:hover td {
    background: var(--bg-tertiary);
}

/* VIP Section */
.promo-vip-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.promo-vip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.promo-vip-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.promo-vip-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.promo-vip-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glow-gradient);
    border-radius: 50%;
    color: var(--accent-primary);
}

.promo-vip-icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.promo-vip-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-vip-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Daily Bonus Section */
.promo-daily-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.promo-daily-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

/* Free Spins Section */
.promo-freespins-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.promo-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.promo-slot-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.promo-slot-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.promo-slot-icon {
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.promo-slot-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.promo-slot-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Summary Section */
.promo-summary-content {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.promo-summary-cta {
    text-align: center;
}

/* FAQ Section (Promotions) */
.promo-faq {
    background: var(--bg-secondary);
}

/* Final CTA Section (Promotions) */
.promo-final-cta {
    padding: 3rem 0;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
}

.promo-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.promo-final-cta .section-container {
    position: relative;
    z-index: 1;
}

.promo-final-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-final-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.promo-final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.promo-final-cta-buttons .btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
}

/* ==========================================================================
   PROMOTIONS PAGE RESPONSIVE
   ========================================================================== */
@media (min-width: 480px) {
    .promo-vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .promo-final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .promo-final-cta-buttons .btn-large {
        width: auto;
    }
}

@media (min-width: 768px) {
    .promo-section {
        padding: 4rem 0;
    }

    .promo-content-grid {
        grid-template-columns: 1fr 380px;
        gap: 2.5rem;
    }

    .promo-content-grid-reverse {
        grid-template-columns: 380px 1fr;
    }

    .promo-text h2 {
        font-size: 1.75rem;
    }

    .promo-vip-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .promo-vip-card {
        padding: 1.75rem;
    }

    .promo-slot-card {
        padding: 1.5rem;
    }

    .promo-final-cta {
        padding: 4rem 0;
    }

    .promo-final-cta h2 {
        font-size: 2rem;
    }

    .promo-final-cta p {
        font-size: 1.125rem;
    }

    .promo-final-cta-buttons .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .promo-section {
        padding: 5rem 0;
    }

    .promo-content-grid {
        grid-template-columns: 1fr 420px;
        gap: 3rem;
    }

    .promo-content-grid-reverse {
        grid-template-columns: 420px 1fr;
    }

    .promo-text h2 {
        font-size: 2rem;
    }

    .promo-highlight-card {
        padding: 2.5rem;
    }

    .promo-highlight-value {
        font-size: 3.5rem;
    }

    .promo-final-cta {
        padding: 5rem 0;
    }

    .promo-final-cta h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1280px) {
    .promo-text h2 {
        font-size: 2.25rem;
    }
}
