/* ==========================================================================
   N98 - GLOBAL STYLES
   Unique Design: Electric Cyan & Neon Blue Theme with Futuristic Feel
   ========================================================================== */

/* CSS Custom Properties */
:root {
    /* Primary Colors - Electric Cyan & Neon Blue */
    --accent-primary: #00d4ff;
    --accent-primary-rgb: 0, 212, 255;
    --accent-secondary: #0099ff;
    --accent-tertiary: #00ffcc;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #00ffcc 100%);
    --accent-gradient-hover: linear-gradient(135deg, #33e0ff 0%, #3388ff 50%, #33ffdd 100%);

    /* Background Colors - Deep Dark with Blue Tint */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0d1425;
    --bg-tertiary: #121a30;
    --bg-hover: #1a2540;
    --bg-card: linear-gradient(145deg, #0d1425 0%, #0a0e1a 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8b5d1;
    --text-muted: #6b7a99;

    /* 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 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-strong: 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;
}

/* Reset & 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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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 */
.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-normal);
}

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

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

/* Logo */
.brand a {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    transition: filter var(--transition-normal);
}

.brand a:hover .header-logo {
    filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.6));
}

/* 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.95rem;
    border-radius: var(--radius-sm);
    transition: all 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: 2px;
    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.9rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-normal);
}

.header-cta .btn-cta:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    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: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.1);
}

.mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: all 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;
    transform: scaleX(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: all 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: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-primary);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

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

.nav-menu.active li a {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-primary);
}

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

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

.nav-menu.active .mobile-cta-item {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-secondary);
    border-bottom: none;
}

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 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: 1rem 2rem;
    }

    .header-logo {
        height: 48px;
    }

    .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: none;
        box-shadow: none;
    }

    .nav-menu li a {
        padding: 0.625rem 1rem;
        font-size: 0.95rem;
        border-bottom: none;
    }

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

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

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

footer[role="contentinfo"] {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 90px;
    position: relative;
}

footer[role="contentinfo"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--accent-gradient);
    box-shadow: var(--shadow-glow);
}

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

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

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

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

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

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

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

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

.footer-social 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(--accent-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

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

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

/* Trust Badges Section */
.footer-trust {
    padding: 2rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 2rem;
    background: rgba(0, 212, 255, 0.02);
}

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

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

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px 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.75rem;
}

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

.disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

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

    .trust-badges {
        gap: 3rem;
    }

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

    .disclaimer {
        text-align: right;
        margin: 0;
    }
}

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

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

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

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

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

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 14, 26, 0.98);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 30px 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.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-normal);
}

/* 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);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Primary Button (Main CTA) */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--shadow-glow);
}

.sticky-btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    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.5rem 0.25rem;
        font-size: 0.7rem;
        border-radius: var(--radius-sm);
    }
}

/* Small Mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .sticky-btn {
        padding: 0.625rem 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.8rem;
    }
}

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

    .sticky-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

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

    .sticky-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 200px;
    }
}

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

    .sticky-btn {
        flex: none;
        min-width: 160px;
        max-width: 220px;
    }
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
}

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

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

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-secondary);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

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

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

.btn-full {
    width: 100%;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.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;
}

/* ==========================================================================
   HOMEPAGE - MAIN CONTENT STYLES
   ========================================================================== */

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

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

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

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

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

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

/* Button Large Variant */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .btn-large {
        padding: 1.125rem 2.5rem;
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   HERO SECTION - Pattern 4: Stacked/Vertical
   ========================================================================== */

.hero {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero-description:last-of-type {
    margin-bottom: 1.5rem;
}

.hero-description strong {
    color: var(--text-primary);
}

.hero-description em {
    color: var(--accent-primary);
    font-style: normal;
}

.hero-description u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

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

.hero-image-wrapper {
    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-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

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

    .hero-description {
        margin-bottom: 1.25rem;
    }

    .hero-description:last-of-type {
        margin-bottom: 2rem;
    }
}

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

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

/* ==========================================================================
   PLATFORM SECTION
   ========================================================================== */

.platform-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.platform-content {
    display: grid;
    gap: 2rem;
}

.platform-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.platform-text p:last-child {
    margin-bottom: 0;
}

.platform-text strong {
    color: var(--text-primary);
}

.platform-text em {
    color: var(--accent-primary);
    font-style: normal;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

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

.feature-icon svg {
    width: 40px;
    height: 40px;
}

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

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

.platform-aside {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.platform-aside h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.platform-aside p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.platform-aside strong {
    color: var(--text-primary);
}

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

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

    .feature-icon svg {
        width: 48px;
        height: 48px;
    }

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

    .feature-card p {
        font-size: 0.9rem;
    }
}

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

    .platform-content {
        gap: 3rem;
    }

    .platform-aside {
        padding: 2rem;
    }
}

/* ==========================================================================
   SLOTS SECTION
   ========================================================================== */

.slots-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.slots-content {
    display: grid;
    gap: 2rem;
}

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

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

.slots-image figcaption {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.slots-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.slots-text strong {
    color: var(--text-primary);
}

.slots-text em {
    color: var(--accent-primary);
    font-style: normal;
}

.slots-text u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.slots-tip {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.slots-tip h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

.slots-tip p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

    .slots-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

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

    .slots-tip {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   PAYMENT SECTION
   ========================================================================== */

.payment-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.payment-content {
    display: grid;
    gap: 2rem;
}

.payment-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.payment-text p:last-child {
    margin-bottom: 0;
}

.payment-text strong {
    color: var(--text-primary);
}

.payment-text u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.payment-steps {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.payment-steps h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.payment-steps > p {
    margin-bottom: 1.25rem;
}

.payment-steps strong {
    color: var(--text-primary);
}

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

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.steps-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.step-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 4px;
}

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

    .payment-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

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

    .payment-steps {
        padding: 2rem;
    }
}

/* ==========================================================================
   PROMO SECTION (Free Credit)
   ========================================================================== */

.promo-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.promo-content {
    display: grid;
    gap: 2rem;
}

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

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

.promo-image figcaption {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.promo-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-text strong {
    color: var(--text-primary);
}

.promo-text u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.promo-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.promo-terms {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.promo-terms h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

.promo-terms p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

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

    .promo-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

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

    .promo-terms {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   CASINO SECTION
   ========================================================================== */

.casino-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.casino-content {
    display: grid;
    gap: 2rem;
}

.casino-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.casino-text strong {
    color: var(--text-primary);
}

.casino-text em {
    color: var(--accent-primary);
    font-style: normal;
}

.casino-features {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.casino-features h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.casino-features p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.casino-features strong {
    color: var(--text-primary);
}

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

    .casino-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

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

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

/* ==========================================================================
   ALL GAMES SECTION
   ========================================================================== */

.allgames-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.allgames-content {
    display: grid;
    gap: 2rem;
}

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

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

.allgames-image figcaption {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.allgames-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.allgames-text p:last-child {
    margin-bottom: 0;
}

.allgames-text strong {
    color: var(--text-primary);
}

.allgames-text em {
    color: var(--accent-primary);
    font-style: normal;
}

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

    .allgames-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .allgames-image {
        order: 2;
    }

    .allgames-text {
        order: 1;
    }
}

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

/* ==========================================================================
   REGISTER SECTION
   ========================================================================== */

.register-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.register-content {
    display: grid;
    gap: 2rem;
}

.register-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.register-text p:last-child {
    margin-bottom: 0;
}

.register-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.register-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.register-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.register-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.register-info strong {
    color: var(--text-primary);
}

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

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

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

    .register-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .register-cta {
        grid-column: span 2;
        justify-content: center;
        margin-top: 1rem;
    }
}

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

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

/* ==========================================================================
   SUPPORT SECTION
   ========================================================================== */

.support-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.support-content {
    display: grid;
    gap: 2rem;
}

.support-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.support-text strong {
    color: var(--text-primary);
}

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

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

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

.channel-icon svg {
    width: 32px;
    height: 32px;
}

.channel-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.channel-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

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

    .channel-icon svg {
        width: 40px;
        height: 40px;
    }

    .channel-card h4 {
        font-size: 1rem;
    }

    .channel-card p {
        font-size: 0.85rem;
    }
}

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

    .channel-card {
        padding: 1.5rem;
    }
}

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

.faq-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 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-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-primary);
}

.faq-item dd {
    padding: 1.25rem 1.5rem;
    margin: 0;
}

.faq-item dd p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item dd strong {
    color: var(--text-primary);
}

.faq-item dd u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

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

    .faq-item dt {
        font-size: 1.1rem;
        padding: 1.5rem 2rem;
    }

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

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

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

/* ==========================================================================
   CTA SECTION (Final Call to Action)
   ========================================================================== */

.cta-section {
    padding: 3rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

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

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

    .cta-content > p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
}

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

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

/* Promotions Hero Section - 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;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.promo-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(10, 14, 26, 0.75) 100%);
    z-index: 1;
}

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

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

.promo-hero-card {
    background: linear-gradient(145deg, rgba(13, 20, 37, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    max-width: 800px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.promo-hero-card h1 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-hero-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.promo-hero-description strong {
    color: var(--text-primary);
}

.promo-hero-description em {
    color: var(--accent-primary);
    font-style: normal;
}

.promo-hero-description u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.promo-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

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

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

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

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

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

/* Free Credit Section */
.promo-free-credit-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.promo-free-credit-content {
    display: grid;
    gap: 2rem;
}

.promo-free-credit-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-free-credit-text p:last-of-type {
    margin-bottom: 0;
}

.promo-free-credit-text strong {
    color: var(--text-primary);
}

.promo-free-credit-text em {
    color: var(--accent-primary);
    font-style: normal;
}

.promo-free-credit-text u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.promo-steps-box {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.promo-steps-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
}

.promo-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.promo-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.promo-steps-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.promo-steps-list .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.promo-steps-list .step-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 4px;
}

.promo-steps-list .step-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

    .promo-steps-box {
        padding: 2rem;
    }
}

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

/* Bonus 100% Section */
.promo-bonus-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.promo-bonus-content {
    display: grid;
    gap: 2rem;
}

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

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

.promo-bonus-image figcaption {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.promo-bonus-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-bonus-text strong {
    color: var(--text-primary);
}

.promo-bonus-text em {
    color: var(--accent-primary);
    font-style: normal;
}

.promo-bonus-text u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.promo-conditions-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
}

.promo-conditions-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.promo-conditions-box > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.promo-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.promo-conditions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 300px;
}

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

.promo-conditions-table th {
    background: var(--bg-tertiary);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-primary);
}

.promo-conditions-table td {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.promo-conditions-table td strong {
    color: var(--text-primary);
}

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

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

    .promo-bonus-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .promo-conditions-box {
        padding: 2rem;
    }
}

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

/* Cashback Section */
.promo-cashback-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-cashback-content {
    display: grid;
    gap: 2rem;
}

.promo-cashback-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-cashback-text p:last-child {
    margin-bottom: 0;
}

.promo-cashback-text strong {
    color: var(--text-primary);
}

.promo-cashback-text em {
    color: var(--accent-primary);
    font-style: normal;
}

.promo-cashback-benefits {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
}

.promo-cashback-benefits h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.promo-cashback-benefits p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.promo-cashback-benefits p:last-child {
    margin-bottom: 0;
}

.promo-cashback-benefits strong {
    color: var(--text-primary);
}

.promo-cashback-benefits u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

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

    .promo-cashback-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

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

    .promo-cashback-benefits {
        padding: 2rem;
    }
}

/* Referral Section */
.promo-referral-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.promo-referral-content {
    display: grid;
    gap: 2rem;
}

.promo-referral-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-referral-text p:last-child {
    margin-bottom: 0;
}

.promo-referral-text strong {
    color: var(--text-primary);
}

.promo-referral-steps {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-referral-steps h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.promo-referral-steps > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.promo-referral-steps a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.referral-feature {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-normal);
}

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

.referral-icon {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.referral-icon svg {
    width: 28px;
    height: 28px;
}

.referral-feature h4 {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.referral-feature p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (min-width: 480px) {
    .referral-icon svg {
        width: 32px;
        height: 32px;
    }

    .referral-feature h4 {
        font-size: 0.9rem;
    }

    .referral-feature p {
        font-size: 0.75rem;
    }
}

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

    .promo-referral-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .promo-referral-steps {
        padding: 2rem;
    }

    .referral-feature {
        padding: 1.25rem;
    }

    .referral-feature h4 {
        font-size: 0.95rem;
    }

    .referral-feature p {
        font-size: 0.8rem;
    }
}

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

/* VIP Section */
.promo-vip-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.promo-vip-content {
    display: grid;
    gap: 2rem;
}

.promo-vip-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-vip-text p:last-child {
    margin-bottom: 0;
}

.promo-vip-text strong {
    color: var(--text-primary);
}

.promo-vip-text em {
    color: var(--accent-primary);
    font-style: normal;
}

.promo-vip-benefits {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-vip-benefits h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.promo-vip-benefits > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.promo-vip-benefits strong {
    color: var(--text-primary);
}

.promo-vip-benefits em {
    color: var(--accent-primary);
    font-style: normal;
}

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

.vip-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-primary);
}

.vip-benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vip-benefits-list li svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.vip-benefits-list li span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vip-benefits-list li strong {
    color: var(--text-primary);
}

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

    .promo-vip-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .promo-vip-benefits {
        padding: 2rem;
    }
}

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

/* Payment Section (Promotions Page) */
.promo-payment-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.promo-payment-content {
    display: grid;
    gap: 2rem;
}

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

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

.promo-payment-image figcaption {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.promo-payment-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-payment-text strong {
    color: var(--text-primary);
}

.promo-payment-text em {
    color: var(--accent-primary);
    font-style: normal;
}

.promo-payment-text u {
    text-decoration: none;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.payment-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

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

.highlight-icon {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
}

.highlight-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.highlight-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.promo-payment-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
}

.promo-payment-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.promo-payment-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.promo-payment-info p:last-child {
    margin-bottom: 0;
}

.promo-payment-info strong {
    color: var(--text-primary);
}

@media (min-width: 480px) {
    .highlight-icon svg {
        width: 36px;
        height: 36px;
    }

    .highlight-text h4 {
        font-size: 1rem;
    }

    .highlight-text p {
        font-size: 0.8rem;
    }
}

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

    .promo-payment-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .promo-payment-info {
        grid-column: span 2;
    }

    .payment-highlight {
        padding: 1.25rem;
    }

    .highlight-icon svg {
        width: 40px;
        height: 40px;
    }
}

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

    .promo-payment-info {
        padding: 2rem;
    }
}

/* Summary Section */
.promo-summary-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-summary-content {
    display: grid;
    gap: 2rem;
}

.promo-summary-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.promo-summary-text p:last-child {
    margin-bottom: 0;
}

.promo-summary-text strong {
    color: var(--text-primary);
}

.promo-summary-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.promo-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

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

.promo-card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.promo-summary-card h3 {
    font-size: 1rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.promo-card-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.promo-summary-card > p:not(.promo-card-value) {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.promo-summary-card .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
}

@media (min-width: 576px) {
    .promo-card-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .promo-summary-card h3 {
        font-size: 1.1rem;
    }

    .promo-card-value {
        font-size: 1.75rem;
    }

    .promo-summary-card > p:not(.promo-card-value) {
        font-size: 0.85rem;
    }
}

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

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

    .promo-summary-card {
        padding: 1.75rem 1.25rem;
    }
}

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

    .promo-summary-card {
        padding: 2rem 1.5rem;
    }

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

/* FAQ Section (Promotions Page) */
.promo-faq-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

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

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


/* ==========================================================================
   404 ERROR PAGE STYLES
   ========================================================================== */
.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(var(--accent-primary-rgb), 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.error-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.error-code {
    font-family: 'Prompt', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: none;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(var(--accent-primary-rgb), 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(var(--accent-primary-rgb), 0.5));
    }
}

.error-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.error-actions .btn {
    min-width: 200px;
}

/* 404 Decorative Elements */
.error-decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}

.error-decoration-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.error-decoration-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: var(--accent-gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* 404 Page Responsive Styles */
@media (min-width: 480px) {
    .error-actions {
        flex-direction: row;
    }

    .error-actions .btn {
        min-width: 180px;
    }
}

@media (min-width: 576px) {
    .error-section {
        padding: 4rem 1.5rem;
    }

    .error-code {
        font-size: 10rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1.0625rem;
    }
}

@media (min-width: 768px) {
    .error-section {
        padding: 5rem 2rem;
    }

    .error-code {
        font-size: 12rem;
    }

    .error-title {
        font-size: 2.25rem;
    }

    .error-container {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .error-code {
        font-size: 14rem;
    }

    .error-title {
        font-size: 2.5rem;
    }

    .error-message {
        font-size: 1.125rem;
    }
}


/* 404 Error Icon */
.error-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(var(--accent-primary-rgb), 0.2);
    animation: icon-pulse 3s ease-in-out infinite;
}

.error-icon svg {
    color: var(--accent-primary);
    opacity: 0.8;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(var(--accent-primary-rgb), 0.2);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(var(--accent-primary-rgb), 0.4);
    }
}

/* 404 Quick Links */
.error-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.error-quick-label {
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.error-quick-link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.error-quick-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.error-quick-separator {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Enhanced Button Styles for 404 */
.error-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.error-actions .btn svg {
    flex-shrink: 0;
}

/* Responsive Adjustments for 404 Elements */
@media (max-width: 479px) {
    .error-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .error-icon svg {
        width: 48px;
        height: 48px;
    }

    .error-quick-links {
        font-size: 0.875rem;
    }

    .error-quick-label {
        width: 100%;
        text-align: center;
        margin-bottom: 0.25rem;
    }
}

@media (min-width: 576px) {
    .error-icon {
        width: 120px;
        height: 120px;
    }

    .error-icon svg {
        width: 72px;
        height: 72px;
    }
}

@media (min-width: 768px) {
    .error-icon {
        width: 140px;
        height: 140px;
        margin-bottom: 2rem;
    }

    .error-icon svg {
        width: 80px;
        height: 80px;
    }

    .error-quick-links {
        font-size: 1rem;
        gap: 0.75rem;
    }
}
