/* ==========================================================================
   VSC888 - MAIN STYLESHEET
   Electric Cyan & Purple Neon Theme
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
    /* Primary Colors - Electric Cyan & Purple */
    --accent-primary: #00e5ff;
    --accent-primary-rgb: 0, 229, 255;
    --accent-secondary: #9c27b0;
    --accent-secondary-rgb: 156, 39, 176;
    --accent-tertiary: #7c4dff;

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #00e5ff 0%, #7c4dff 50%, #9c27b0 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00fff7 0%, #8c5cff 50%, #ab47bc 100%);
    --bg-gradient: linear-gradient(180deg, #0a0a12 0%, #12121f 50%, #0a0a12 100%);
    --card-gradient: linear-gradient(145deg, rgba(20, 20, 35, 0.9) 0%, rgba(10, 10, 18, 0.95) 100%);

    /* Background Colors */
    --bg-primary: #0a0a12;
    --bg-secondary: #12121f;
    --bg-tertiary: #1a1a2e;
    --bg-hover: #22223a;
    --bg-card: rgba(18, 18, 31, 0.95);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b4b4cc;
    --text-muted: #6b6b8a;

    /* Border Colors */
    --border-primary: rgba(0, 229, 255, 0.15);
    --border-secondary: rgba(156, 39, 176, 0.2);
    --border-glow: rgba(0, 229, 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, 229, 255, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(156, 39, 176, 0.3);

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 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);
    background-image: var(--bg-gradient);
    min-height: 100vh;
    -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, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }

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

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: -100%;
    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;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 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: 1400px;
    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: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 229, 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;
}

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

/* 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: 0 6px 24px rgba(0, 229, 255, 0.5);
}

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

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

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

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

.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);
    background: var(--accent-primary);
}

/* 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-base), visibility var(--transition-base);
    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);
    border-left: 1px solid var(--border-primary);
    padding: 5rem 1.25rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

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

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

.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: 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;
        border: none;
        padding: 0;
        animation: 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: 52px;
    }

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

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

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

.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: 44px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.25));
}

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

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

.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 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: 1.25rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent-gradient);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.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.9rem;
    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: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

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

/* Trust Badges Section */
.footer-trust {
    padding: 1.75rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 1.75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.02) 50%, transparent 100%);
}

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    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, 229, 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;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

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

    .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-heading::after {
        margin: 0.5rem 0 0;
    }

    .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 {
        margin: 0;
        text-align: right;
    }
}

/* 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 0.75rem;
    background: rgba(10, 10, 18, 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.8rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-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: 0 2px 12px rgba(0, 229, 255, 0.35);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.5);
}

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

    .sticky-btn {
        padding: 0.5rem 0.25rem;
        font-size: 0.65rem;
        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.7rem;
    }
}

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

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

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

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

    .sticky-btn {
        padding: 0.9375rem 1.25rem;
        font-size: 0.9rem;
        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;
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   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;
    }
}

/* Button Base 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-base);
    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: 0 6px 24px rgba(0, 229, 255, 0.5);
}

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

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Card Styles */
.card {
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Section Spacing */
.section {
    padding: 3rem 0;
}

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

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

/* Text Utilities */
.text-center { text-align: center; }
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Effects */
.glow-cyan {
    box-shadow: var(--shadow-glow);
}

.glow-purple {
    box-shadow: var(--shadow-glow-purple);
}

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

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

/* 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 {
    margin-bottom: 2.5rem;
}

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

.section-header p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Button Large */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   HERO SECTION - Pattern 4: Stacked/Vertical
   ========================================================================== */
.hero-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

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

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

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 1rem;
}

.hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 229, 255, 0.15);
    border: 1px solid var(--border-primary);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

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

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

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

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

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

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

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

    .hero-subtext {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SLOTS SECTION
   ========================================================================== */
.slots-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.slots-providers {
    margin-bottom: 2.5rem;
}

.slots-providers h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
}

.slots-providers p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Providers Table */
.providers-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
    background: var(--bg-card);
}

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

.providers-table thead {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.providers-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-primary);
}

.providers-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.providers-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.03);
}

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

/* Slots Image */
.slots-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

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

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

    .providers-table th,
    .providers-table td {
        padding: 1.125rem 1rem;
    }
}

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

/* ==========================================================================
   AUTO DEPOSIT/WITHDRAW SECTION
   ========================================================================== */
.auto-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(156, 39, 176, 0.15) 100%);
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

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

.feature-card p {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.feature-card p:last-child {
    margin-bottom: 0;
}

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

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

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

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

/* ==========================================================================
   LIVE CASINO SECTION
   ========================================================================== */
.live-casino-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.live-casino-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(156, 39, 176, 0.15);
    border: 1px solid var(--border-secondary);
    margin-bottom: 2.5rem;
}

.live-casino-image {
    width: 100%;
    height: auto;
    display: block;
}

.baccarat-rooms h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1.25rem;
    color: var(--accent-secondary);
}

.baccarat-rooms p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

/* ==========================================================================
   FREE CREDIT SECTION
   ========================================================================== */
.free-credit-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.free-credit-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(156, 39, 176, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.promo-cta {
    margin-top: 2rem;
    text-align: center;
}

.promotions-info {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
}

.promotions-info h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 1.25rem;
    color: var(--accent-tertiary);
}

.promotions-info p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

    .promotions-info {
        padding: 2.5rem;
    }
}

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

/* ==========================================================================
   SPORTS BETTING SECTION
   ========================================================================== */
.sports-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.lottery-info {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
}

.lottery-info h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.lottery-info p {
    line-height: 1.8;
    margin-bottom: 0;
}

.lottery-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

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

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

    .lottery-info {
        padding: 2.5rem;
    }
}

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

/* ==========================================================================
   SECURITY & SUPPORT SECTION
   ========================================================================== */
.security-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
}

.trust-features {
    margin-top: 2.5rem;
}

.trust-features h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.trust-features > p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.trust-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-badge-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--border-glow);
}

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

.trust-badge-card span {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

@media (min-width: 576px) {
    .trust-badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .trust-badge-card {
        padding: 2rem 1.25rem;
    }

    .trust-badge-card span {
        font-size: 0.9375rem;
    }
}

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

/* ==========================================================================
   REGISTRATION SECTION
   ========================================================================== */
.register-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

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

.step-item:hover {
    transform: translateX(4px);
    border-color: var(--border-glow);
}

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

.step-item span:not(.step-number) {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-top: 0.25rem;
}

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

.register-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
    margin-bottom: 2rem;
}

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

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

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

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

    .step-item {
        padding: 1.5rem;
    }
}

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

    .register-steps {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

.faq-list {
    margin: 0;
    padding: 0;
}

.faq-item {
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

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

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

.faq-item dt {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(156, 39, 176, 0.03) 100%);
    border-bottom: 1px solid var(--border-primary);
}

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

.faq-item dd p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

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

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

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

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

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

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

/* Promotions Hero Section - Pattern 3: Centered Full-Width */
.promo-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.85) 0%, rgba(10, 10, 18, 0.9) 50%, rgba(10, 10, 18, 0.95) 100%);
    z-index: 1;
}

.promo-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
}

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

.promo-hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 229, 255, 0.3);
}

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

.promo-hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.promo-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

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

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

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

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

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

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

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

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

/* Promotions Credit Section */
.promo-credit-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Promotion Cards */
.promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin: 2.5rem 0;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.promo-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-transform: uppercase;
}

.promo-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(156, 39, 176, 0.15) 100%);
    margin-bottom: 1.5rem;
}

.promo-card-icon svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

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

.promo-card-content .promo-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-card-content p {
    margin-bottom: 1.5rem;
}

.promo-card-content .btn {
    min-width: 200px;
}

/* Featured Card Variants */
.promo-card-featured {
    border-color: rgba(0, 229, 255, 0.3);
}

.promo-card-welcome {
    border-color: rgba(156, 39, 176, 0.3);
}

.promo-card-cashback {
    border-color: rgba(124, 77, 255, 0.3);
}

.promo-card-daily {
    border-color: rgba(0, 229, 255, 0.3);
}

.promo-card-spins {
    border-color: rgba(156, 39, 176, 0.3);
}

@media (min-width: 768px) {
    .promo-card {
        flex-direction: row;
        text-align: left;
        padding: 3rem 2.5rem;
        gap: 2rem;
    }

    .promo-card-icon {
        min-width: 120px;
        width: 120px;
        height: 120px;
        margin-bottom: 0;
    }

    .promo-card-content {
        flex: 1;
    }

    .promo-card-content .btn {
        min-width: auto;
    }
}

/* Promo Steps Box */
.promo-steps-box {
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-top: 2.5rem;
}

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

.promo-steps-box > p {
    margin-bottom: 1.5rem;
}

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

.promo-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: background var(--transition-fast);
}

.promo-step:hover {
    background: rgba(0, 229, 255, 0.06);
}

.promo-step:last-child {
    margin-bottom: 0;
}

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

.promo-step span:not(.promo-step-number) {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-top: 0.25rem;
}

.promo-step a {
    color: var(--accent-primary);
}

@media (min-width: 768px) {
    .promo-steps-box {
        padding: 2.5rem;
    }
}

/* Promo Code Section */
.promo-code-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

/* Promo Channels Box */
.promo-channels-box {
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
}

.promo-channels-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

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

.promo-channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(156, 39, 176, 0.05);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.promo-channel-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-secondary);
}

.promo-channel-item svg {
    color: var(--accent-secondary);
}

.promo-channel-item span {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

@media (min-width: 576px) {
    .promo-channels-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .promo-channels-box {
        padding: 2.5rem;
    }

    .promo-channel-item {
        padding: 1.5rem;
    }

    .promo-channel-item span {
        font-size: 0.9375rem;
    }
}

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

/* Promo Image Wrapper */
.promo-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
    margin: 2.5rem 0;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.promo-image-wrapper:hover .promo-image {
    transform: scale(1.02);
}

/* Promo Table Wrapper */
.promo-table-wrapper {
    margin: 2.5rem 0;
}

.promo-table-wrapper h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent-tertiary);
}

.table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
    background: var(--bg-card);
}

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

.promo-table thead {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.promo-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-primary);
}

.promo-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.promo-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.03);
}

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

@media (min-width: 768px) {
    .promo-table th,
    .promo-table td {
        padding: 1.125rem 1.25rem;
    }
}

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

/* Promo Details Box */
.promo-details-box {
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.promo-details-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-tertiary);
}

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

.promo-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.promo-details-list li svg {
    min-width: 24px;
    color: var(--accent-primary);
    margin-top: 0.125rem;
}

.promo-details-list li span {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .promo-details-box {
        padding: 2.5rem;
    }
}

/* Promo Daily Section */
.promo-daily-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

/* Promo Benefits Box */
.promo-benefits-box {
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.promo-benefits-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    text-align: center;
}

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

.promo-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 229, 255, 0.03);
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
}

.promo-benefit-item:hover {
    transform: translateY(-2px);
}

.promo-benefit-item svg {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.promo-benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.promo-benefit-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .promo-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .promo-benefits-box {
        padding: 2.5rem;
    }

    .promo-benefit-item {
        padding: 2rem;
    }
}

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

/* Promo Games Box */
.promo-games-box {
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.promo-games-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.promo-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.promo-game-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(124, 77, 255, 0.15) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.promo-game-tag:hover {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.25) 0%, rgba(124, 77, 255, 0.25) 100%);
    border-color: var(--accent-secondary);
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .promo-games-box {
        padding: 2.5rem;
    }
}

/* Promo VIP Section */
.promo-vip-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.promo-vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(156, 39, 176, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

/* VIP Tiers */
.promo-vip-tiers {
    margin-top: 2.5rem;
}

.promo-vip-tiers h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
    text-align: center;
}

.vip-tiers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.vip-tier {
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.vip-tier:hover {
    transform: translateY(-3px);
}

.vip-tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.vip-tier-header svg {
    min-width: 48px;
}

.vip-tier-header h4 {
    font-size: 1.125rem;
    margin: 0;
}

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

.vip-tier ul li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.vip-tier ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* VIP Tier Colors */
.vip-tier-bronze {
    border-color: rgba(205, 127, 50, 0.3);
}

.vip-tier-bronze .vip-tier-header svg {
    color: #cd7f32;
}

.vip-tier-bronze:hover {
    border-color: #cd7f32;
}

.vip-tier-silver {
    border-color: rgba(192, 192, 192, 0.3);
}

.vip-tier-silver .vip-tier-header svg {
    color: #c0c0c0;
}

.vip-tier-silver:hover {
    border-color: #c0c0c0;
}

.vip-tier-gold {
    border-color: rgba(255, 215, 0, 0.3);
}

.vip-tier-gold .vip-tier-header svg {
    color: #ffd700;
}

.vip-tier-gold:hover {
    border-color: #ffd700;
}

.vip-tier-platinum {
    border-color: rgba(229, 228, 226, 0.3);
}

.vip-tier-platinum .vip-tier-header svg {
    color: #e5e4e2;
}

.vip-tier-platinum:hover {
    border-color: #e5e4e2;
}

.vip-tier-diamond {
    border-color: rgba(185, 242, 255, 0.3);
}

.vip-tier-diamond .vip-tier-header svg {
    color: #b9f2ff;
    filter: drop-shadow(0 0 8px rgba(185, 242, 255, 0.5));
}

.vip-tier-diamond:hover {
    border-color: #b9f2ff;
}

@media (min-width: 576px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-tier-diamond {
        grid-column: span 2;
    }
}

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

@media (min-width: 1024px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vip-tier-platinum {
        grid-column: span 1;
    }

    .vip-tier-diamond {
        grid-column: span 1;
    }
}

@media (min-width: 1200px) {
    .vip-tiers-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .vip-tier-diamond {
        grid-column: span 1;
    }
}

/* Promo Terms Section */
.promo-terms-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

/* Promo FAQ Section */
.promo-faq-section {
    padding: 4rem 0 5rem;
    background: var(--bg-secondary);
}

/* Promo CTA Section */
.promo-cta-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.promo-cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 229, 255, 0.1);
}

.promo-cta-box 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;
}

.promo-cta-box > p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promo-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

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

@media (min-width: 768px) {
    .promo-cta-box {
        padding: 4rem 3rem;
    }
}

/* Responsive adjustments for all promo sections */
@media (min-width: 768px) {
    .promo-credit-section,
    .promo-code-section,
    .promo-welcome-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-spins-section,
    .promo-vip-section,
    .promo-terms-section {
        padding: 5rem 0;
    }

    .promo-faq-section,
    .promo-cta-section {
        padding: 5rem 0 6rem;
    }
}

@media (min-width: 1024px) {
    .promo-credit-section,
    .promo-code-section,
    .promo-welcome-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-spins-section,
    .promo-vip-section,
    .promo-terms-section {
        padding: 6rem 0;
    }

    .promo-faq-section,
    .promo-cta-section {
        padding: 6rem 0 7rem;
    }
}


/* ==========================================================================
   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;
    }
}
