/* ==========================================================================
   GB69 - MAIN STYLESHEET
   Theme: Cyberpunk Neon Blue/Cyan
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
    /* Background Colors */
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1520;
    --bg-tertiary: #151d2e;
    --bg-hover: #1a2438;
    --bg-card: linear-gradient(145deg, #0f1520 0%, #151d2e 100%);

    /* Text Colors */
    --text-primary: #f0f4f8;
    --text-secondary: #a8b2c1;
    --text-muted: #6b7a8f;

    /* Accent Colors - Neon Cyan/Blue */
    --accent-primary: #00e5ff;
    --accent-primary-rgb: 0, 229, 255;
    --accent-secondary: #00b8d4;
    --accent-tertiary: #0088a3;
    --accent-gradient: linear-gradient(135deg, #00e5ff 0%, #00b8d4 50%, #0088a3 100%);
    --accent-glow: 0 0 20px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.2);

    /* Secondary Accent - Electric Purple */
    --accent-alt: #7c4dff;
    --accent-alt-rgb: 124, 77, 255;

    /* Border Colors */
    --border-primary: rgba(0, 229, 255, 0.15);
    --border-secondary: rgba(0, 229, 255, 0.25);
    --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-neon: 0 0 15px rgba(0, 229, 255, 0.3);

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

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 50px;

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

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

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

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

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

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

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--accent-primary);
    color: var(--bg-primary);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

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

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

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

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

.brand a:hover .header-logo {
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

/* 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 1.125rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

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

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-primary);
    background: rgba(0, 229, 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;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-neon);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--border-secondary);
    background: rgba(0, 229, 255, 0.05);
}

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

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

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

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

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

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

.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: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-left: 1px solid var(--border-primary);
    padding: 5.5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.3s ease;
}

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

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.25rem;
}

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

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

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

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

    .header-logo {
        height: 46px;
    }

    .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: 1rem 3rem;
    }

    .header-logo {
        height: 50px;
    }

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

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3.5rem 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: 1.25rem;
}

.footer-logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.25));
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    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: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

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

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

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

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

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    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.9375rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

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

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

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

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

.footer-contact a:hover {
    text-decoration: underline;
}

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

.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);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.trust-badge:hover {
    border-color: var(--border-primary);
    background: rgba(0, 229, 255, 0.06);
}

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

.trust-badge span {
    font-size: 0.8125rem;
    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.9375rem;
}

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .footer-container {
        padding: 4rem 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-heading::after {
        left: 0;
        transform: none;
    }

    .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 {
        max-width: none;
        margin: 0;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .footer-container {
        padding: 4.5rem 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: 5rem 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, 23, 0.95);
    border-top: 1px solid var(--border-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.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.8125rem;
    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-secondary);
}

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

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

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

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

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

/* Visually Hidden (for accessibility) */
.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: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

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

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

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
}

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

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

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

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 2rem 0 2.5rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    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);
    margin-bottom: 1rem;
}

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

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

.hero-cta .btn {
    width: 100%;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hero Features */
.hero-features {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.hero-feature:hover {
    border-color: var(--border-secondary);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.hero-feature svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
}

.hero-feature span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (min-width: 480px) {
    .hero-container {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: 1.875rem;
    }
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    .hero-cta .btn {
        width: auto;
    }
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 3rem 0 3.5rem;
    }
    .hero-container {
        flex-direction: row;
        align-items: center;
        padding: 0 2rem;
        gap: 3rem;
    }
    .hero-content {
        flex: 1;
        text-align: left;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1.0625rem;
    }
    .hero-cta {
        justify-content: flex-start;
    }
    .hero-image {
        flex: 1;
        max-width: 50%;
    }
    .hero-features {
        padding: 0 2rem;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    .hero-feature {
        padding: 1.25rem 1rem;
    }
    .hero-feature span {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 4rem 0 4.5rem;
    }
    .hero-container {
        padding: 0 3rem;
        gap: 4rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.125rem;
    }
    .hero-subtext {
        font-size: 1rem;
    }
    .hero-features {
        padding: 0 3rem;
        margin-top: 3rem;
    }
    .hero-feature {
        flex-direction: row;
        padding: 1.25rem 1.5rem;
        gap: 0.875rem;
    }
}

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

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

.slot-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.slot-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

/* Providers Article */
.providers-article {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.providers-article > p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Providers Table */
.providers-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
}

.providers-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 0.875rem;
}

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

.providers-table th {
    background: var(--bg-tertiary);
    color: var(--accent-primary);
    font-weight: 600;
    white-space: nowrap;
}

.providers-table tbody tr {
    transition: background var(--transition-fast);
}

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

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

/* Tips Article */
.tips-article {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(124, 77, 255, 0.05) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.tips-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tips-article p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .slot-section {
        padding: 4rem 0;
    }
    .slot-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    .slot-image {
        flex: 0 0 45%;
    }
    .slot-text {
        flex: 1;
    }
    .providers-article,
    .tips-article {
        padding: 2rem;
    }
    .providers-article h3,
    .tips-article h3 {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .slot-section {
        padding: 5rem 0;
    }
    .slot-content {
        gap: 4rem;
    }
    .slot-image {
        flex: 0 0 40%;
    }
    .providers-article,
    .tips-article {
        padding: 2.5rem;
    }
}

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

.casino-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.casino-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

/* Baccarat Article */
.baccarat-article {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

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

.baccarat-article p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.casino-cta {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .casino-section {
        padding: 4rem 0;
    }
    .casino-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    .casino-image {
        flex: 0 0 45%;
        order: 0;
    }
    .casino-text {
        flex: 1;
    }
    .baccarat-article {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .casino-section {
        padding: 5rem 0;
    }
    .casino-content {
        gap: 4rem;
    }
    .casino-image {
        flex: 0 0 40%;
    }
    .baccarat-article {
        padding: 2.5rem;
    }
    .baccarat-article h3 {
        font-size: 1.375rem;
    }
}

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

.banking-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.banking-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

/* Banking Methods */
.banking-methods {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.banking-methods h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.banking-methods > p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Payment Icons */
.payment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.payment-icon:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-neon);
}

.payment-icon svg {
    color: var(--accent-primary);
}

.payment-icon span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

@media (min-width: 480px) {
    .payment-icons {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .banking-section {
        padding: 4rem 0;
    }
    .banking-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    .banking-image {
        flex: 0 0 45%;
    }
    .banking-text {
        flex: 1;
    }
    .banking-methods {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .banking-section {
        padding: 5rem 0;
    }
    .banking-content {
        gap: 4rem;
    }
    .banking-image {
        flex: 0 0 40%;
    }
    .banking-methods {
        padding: 2.5rem;
    }
    .banking-methods h3 {
        font-size: 1.375rem;
    }
    .payment-icon {
        padding: 1.25rem;
    }
    .payment-icon span {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */
.promotions-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.promotions-content {
    margin-bottom: 2rem;
}

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

.promotions-text p {
    margin-bottom: 1rem;
}

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

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

.promotions-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Credit Article */
.credit-article {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(124, 77, 255, 0.08) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

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

.credit-article p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.promo-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo-cta .btn {
    width: 100%;
}

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

@media (min-width: 768px) {
    .promotions-section {
        padding: 4rem 0;
    }
    .promotions-image {
        float: right;
        width: 45%;
        margin: 0 0 1.5rem 2rem;
    }
    .credit-article {
        padding: 2rem;
        clear: both;
    }
}

@media (min-width: 1024px) {
    .promotions-section {
        padding: 5rem 0;
    }
    .promotions-image {
        width: 40%;
    }
    .credit-article {
        padding: 2.5rem;
    }
    .credit-article h3 {
        font-size: 1.375rem;
    }
}

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

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

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

.register-cta {
    margin-top: 2rem;
}

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

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

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

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

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

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

@media (min-width: 768px) {
    .access-section {
        padding: 4rem 0;
    }
    .access-content p {
        font-size: 1.0625rem;
    }
}

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

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

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

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

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

/* Security Badges */
.security-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
}

.security-badge:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

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

.security-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .security-section {
        padding: 4rem 0;
    }
    .security-content p {
        font-size: 1.0625rem;
    }
    .security-badges {
        gap: 1.5rem;
    }
    .security-badge {
        padding: 1.5rem 1.25rem;
    }
    .security-badge span {
        font-size: 0.875rem;
    }
}

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

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

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

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

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

/* Support Channels */
.support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.support-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    padding: 1.25rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
}

.support-channel:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-neon);
}

.support-channel svg {
    color: var(--accent-primary);
}

.support-channel h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.support-channel p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

@media (min-width: 768px) {
    .support-section {
        padding: 4rem 0;
    }
    .support-content p {
        font-size: 1.0625rem;
    }
    .support-channels {
        gap: 1.5rem;
    }
    .support-channel {
        padding: 1.5rem 1.25rem;
    }
    .support-channel h4 {
        font-size: 1rem;
    }
    .support-channel p {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .support-section {
        padding: 5rem 0;
    }
    .support-channels {
        gap: 2rem;
    }
    .support-channel {
        padding: 2rem 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-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

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

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

.faq-item dt {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-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.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    .faq-item dt {
        font-size: 1.0625rem;
        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;
    }
    .faq-item dt {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(124, 77, 255, 0.08) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.final-cta-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
}

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

@media (min-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }
    .final-cta-section h2 {
        font-size: 1.75rem;
    }
    .final-cta-section p {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }
    .final-cta-buttons {
        gap: 1rem;
    }
}

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

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

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

.promo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.85) 0%, rgba(10, 14, 23, 0.95) 100%);
}

.promo-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
    background: rgba(15, 21, 32, 0.8);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-lg), var(--shadow-neon);
}

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

.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.75;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.promo-hero-cta .btn {
    width: 100%;
    max-width: 280px;
}

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

@media (min-width: 768px) {
    .promo-hero-section {
        min-height: 70vh;
        padding: 5rem 2rem;
    }
    .promo-hero-content {
        padding: 3rem;
    }
    .promo-hero-title {
        font-size: 2rem;
    }
    .promo-hero-description {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .promo-hero-section {
        min-height: 75vh;
        padding: 6rem 3rem;
    }
    .promo-hero-content {
        padding: 3.5rem 4rem;
    }
    .promo-hero-title {
        font-size: 2.375rem;
    }
    .promo-hero-description {
        font-size: 1.125rem;
    }
    .promo-hero-subtext {
        font-size: 1rem;
    }
}

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

.promo-bonus-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.promo-bonus-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

/* Conditions Article */
.promo-conditions-article {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(124, 77, 255, 0.05) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

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

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

.promo-conditions-article p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .promo-bonus-section {
        padding: 4rem 0;
    }
    .promo-bonus-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    .promo-bonus-image {
        flex: 0 0 45%;
    }
    .promo-bonus-text {
        flex: 1;
    }
    .promo-conditions-article {
        padding: 2rem;
    }
    .promo-conditions-article h3 {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .promo-bonus-section {
        padding: 5rem 0;
    }
    .promo-bonus-content {
        gap: 4rem;
    }
    .promo-bonus-image {
        flex: 0 0 40%;
    }
    .promo-conditions-article {
        padding: 2.5rem;
    }
}

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

.promo-code-content {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

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

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

/* How-to Article */
.promo-howto-article {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.promo-howto-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

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

.promo-steps-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
}

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

.promo-steps-list li:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-neon);
}

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

.step-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .promo-code-section {
        padding: 4rem 0;
    }
    .promo-code-content p {
        font-size: 1.0625rem;
    }
    .promo-howto-article {
        padding: 2rem;
    }
    .promo-howto-article h3 {
        font-size: 1.375rem;
    }
    .step-text {
        font-size: 1rem;
    }
}

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

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

.promo-deposit-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.promo-deposit-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

/* Highlights Article */
.promo-highlights-article {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-highlights-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    text-align: center;
}

.promo-highlights-article > p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.promo-highlight-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-neon);
}

.promo-highlight-item svg {
    color: var(--accent-primary);
}

.promo-highlight-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

@media (min-width: 768px) {
    .promo-deposit-section {
        padding: 4rem 0;
    }
    .promo-deposit-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    .promo-deposit-image {
        flex: 0 0 45%;
        order: 0;
    }
    .promo-deposit-text {
        flex: 1;
    }
    .promo-highlights-article {
        padding: 2rem;
    }
    .promo-highlights-article h3 {
        font-size: 1.375rem;
    }
    .promo-highlight-item span {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .promo-deposit-section {
        padding: 5rem 0;
    }
    .promo-deposit-content {
        gap: 4rem;
    }
    .promo-deposit-image {
        flex: 0 0 40%;
    }
    .promo-highlights-article {
        padding: 2.5rem;
    }
    .promo-highlight-item {
        padding: 1.25rem;
    }
}

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

.promo-cashback-content {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

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

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

/* Promotions Table Article */
.promo-table-article {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-table-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.promo-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
}

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

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

.promo-table th {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    font-weight: 600;
    white-space: nowrap;
}

.promo-table tbody tr {
    transition: background var(--transition-fast);
}

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

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

@media (min-width: 768px) {
    .promo-cashback-section {
        padding: 4rem 0;
    }
    .promo-cashback-content p {
        font-size: 1.0625rem;
    }
    .promo-table-article {
        padding: 2rem;
    }
    .promo-table-article h3 {
        font-size: 1.375rem;
    }
    .promo-table {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1024px) {
    .promo-cashback-section {
        padding: 5rem 0;
    }
    .promo-table-article {
        padding: 2.5rem;
    }
    .promo-table {
        font-size: 1rem;
    }
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
    .promo-usage-section {
        padding: 4rem 0;
    }
    .promo-usage-content p {
        font-size: 1.0625rem;
    }
}

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

/* Promotions FAQ Section */
.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;
    }
}

/* Promotions Final CTA Section */
.promo-final-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(124, 77, 255, 0.08) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    text-align: center;
}

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

.promo-final-cta-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.promo-final-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
}

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

@media (min-width: 768px) {
    .promo-final-cta-section {
        padding: 4rem 0;
    }
    .promo-final-cta-section h2 {
        font-size: 1.75rem;
    }
    .promo-final-cta-section p {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }
    .promo-final-cta-buttons {
        gap: 1rem;
    }
}

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