/* ==========================================================================
   99MB - Main Stylesheet
   Color Theme: Electric Blue & Cyan Neon on Dark
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Primary Colors - Electric Blue & Cyan */
    --accent-primary: #00d4ff;
    --accent-primary-rgb: 0, 212, 255;
    --accent-secondary: #0099ff;
    --accent-tertiary: #00ffcc;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #00ffcc 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00ffcc 0%, #00d4ff 50%, #0099ff 100%);

    /* Background Colors - Deep Dark */
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1520;
    --bg-tertiary: #151c2a;
    --bg-hover: #1a2235;
    --bg-card: linear-gradient(145deg, #0f1520 0%, #151c2a 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8b5c8;
    --text-muted: #6b7a8f;

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

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 1rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    z-index: 9999;
    transition: top 0.3s;
}

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

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

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

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

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

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

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

.nav-menu li a {
    display: block;
    padding: 0.625rem 1.125rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

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

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

.header-cta .btn-cta {
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-glow);
}

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

/* 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.75rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-primary);
}

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

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--accent-primary);
}

/* 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 0.3s, visibility 0.3s;
    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: 280px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-primary);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

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

.nav-menu.active li a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
}

.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: 0.875rem 1rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

/* Tablet and Desktop - 768px+ */
@media (min-width: 768px) {
    .header-container {
        padding: 0.875rem 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;
    }

    .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: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 100px;
}

.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: 2rem;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

.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: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 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 0.2s, padding-left 0.2s;
}

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

/* Footer Contact */
.footer-contact {
    font-style: normal;
    margin-top: 1rem;
    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: 1.5rem;
}

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

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

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

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

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

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

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

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

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

    .footer-heading::after {
        left: 0;
        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;
    }
}

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

    footer[role="contentinfo"] {
        padding-bottom: 80px;
    }
}

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

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 14, 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: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

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

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

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

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

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

    .sticky-btn {
        padding: 0.5rem 0.25rem;
        font-size: 0.6875rem;
        border-radius: 25px;
    }
}

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

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .sticky-bottom-bar {
        padding: 0.75rem 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: 200px;
    }
}

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

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

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

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

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

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

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

.btn-full {
    width: 100%;
}

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

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.hero h1 {
    font-size: 1.625rem;
    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;
}

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

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

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

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

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

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

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

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

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

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

    .hero .container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        max-width: 600px;
    }

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

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-image {
        flex: 1;
        max-width: 550px;
    }
}

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

/* ==========================================================================
   HOMEPAGE - FEATURES HIGHLIGHTS
   ========================================================================== */
.features-highlights {
    padding: 2.5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 255, 0.1) 100%);
    margin-bottom: 0.875rem;
}

.feature-icon svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

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

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .features-highlights {
        padding: 3rem 0;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

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

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

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .features-highlights {
        padding: 3.5rem 0;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

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

/* ==========================================================================
   HOMEPAGE - SECTION COMMON STYLES
   ========================================================================== */
.slot-games,
.live-casino,
.deposit-withdraw,
.promotions,
.access-section,
.security-section,
.support-section,
.register-cta,
.faq-section {
    padding: 3rem 0;
}

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

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

.deposit-withdraw {
    background: var(--bg-primary);
}

.promotions {
    background: var(--bg-secondary);
}

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

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

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

.register-cta {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

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

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .slot-games,
    .live-casino,
    .deposit-withdraw,
    .promotions,
    .access-section,
    .security-section,
    .support-section,
    .register-cta,
    .faq-section {
        padding: 4rem 0;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .slot-games,
    .live-casino,
    .deposit-withdraw,
    .promotions,
    .access-section,
    .security-section,
    .support-section,
    .register-cta,
    .faq-section {
        padding: 5rem 0;
    }
}

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

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

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

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

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 2.5rem;
    }

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

/* Section Image */
.section-image {
    margin: 0 0 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
}

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

/* Section Content */
.section-content {
    margin-bottom: 2rem;
}

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

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

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

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

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

/* ==========================================================================
   HOMEPAGE - PROVIDERS TABLE
   ========================================================================== */
.providers-table-wrapper {
    margin: 2rem 0;
}

.providers-table-wrapper h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.providers-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    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-secondary);
    font-weight: 600;
    color: var(--accent-primary);
    white-space: nowrap;
}

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

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

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

.providers-table tr:hover td {
    background: var(--bg-hover);
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .providers-table-wrapper h3 {
        font-size: 1.25rem;
    }

    .providers-table {
        font-size: 0.9375rem;
    }

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

/* ==========================================================================
   HOMEPAGE - TIPS BOX / BENEFITS BOX / PROMO HIGHLIGHT
   ========================================================================== */
.tips-box,
.benefits-box,
.promo-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.tips-box::before,
.benefits-box::before,
.promo-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.tips-box h3,
.benefits-box h3,
.promo-highlight h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.tips-box p,
.benefits-box p,
.promo-highlight p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tips-box p:last-child,
.benefits-box p:last-child {
    margin-bottom: 0;
}

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .tips-box,
    .benefits-box,
    .promo-highlight {
        padding: 2rem;
    }

    .tips-box h3,
    .benefits-box h3,
    .promo-highlight h3 {
        font-size: 1.25rem;
    }

    .tips-box p,
    .benefits-box p,
    .promo-highlight p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   HOMEPAGE - DEPOSIT STEPS
   ========================================================================== */
.deposit-steps {
    margin-top: 2rem;
}

.deposit-steps h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-align: center;
}

.deposit-steps > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1rem;
    transition: border-color 0.25s ease;
}

.steps-list li:hover {
    border-color: var(--border-secondary);
}

.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: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

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

.highlight-text {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-primary);
    padding: 1rem 1.25rem;
    border-radius: 0 12px 12px 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .deposit-steps h3 {
        font-size: 1.25rem;
    }

    .steps-list {
        flex-direction: row;
    }

    .steps-list li {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

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

    .step-text {
        padding-top: 0;
    }

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

/* ==========================================================================
   HOMEPAGE - SECURITY BADGES
   ========================================================================== */
.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.security-badge:hover {
    transform: translateY(-4px);
    border-color: var(--border-secondary);
}

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

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .security-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .security-badge {
        padding: 2rem 1.5rem;
    }

    .security-badge svg {
        width: 56px;
        height: 56px;
    }

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

/* ==========================================================================
   HOMEPAGE - REGISTER CTA
   ========================================================================== */
.register-cta .section-header,
.register-cta .section-content {
    position: relative;
    z-index: 1;
}

.register-cta .section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.cta-buttons .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    min-width: 200px;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ==========================================================================
   HOMEPAGE - FAQ SECTION
   ========================================================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

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

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

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: var(--bg-tertiary);
    position: relative;
}

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

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

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

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .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;
    }
}

/* ==========================================================================
   HOMEPAGE - RESPONSIVE FINE-TUNING
   ========================================================================== */

/* Extra small mobile (< 360px) */
@media (max-width: 359px) {
    .hero h1 {
        font-size: 1.375rem;
    }

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

    .hero-cta .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

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

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

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

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

    .faq-item dt {
        font-size: 0.9375rem;
        padding: 1rem;
    }

    .faq-item dd {
        padding: 1rem;
    }
}

/* Small mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .hero h1 {
        font-size: 1.5rem;
    }
}

/* Medium mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .hero h1 {
        font-size: 1.625rem;
    }

    .features-grid {
        gap: 1.25rem;
    }
}

/* Large mobile / Phablet (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero h1 {
        font-size: 1.75rem;
    }

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

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

/* Promotions Hero - Full Screen with Overlay (Pattern 8) */
.promo-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(10, 14, 23, 0.85) 0%,
        rgba(10, 14, 23, 0.92) 50%,
        rgba(10, 14, 23, 0.98) 100%);
    z-index: 2;
}

.promo-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 6rem 0 4rem;
    width: 100%;
}

.promo-badge-main {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-hero h1 {
    font-size: 1.75rem;
    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;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border-primary);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.highlight-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

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

.promo-hero-cta .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    min-width: 200px;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .promo-hero {
        min-height: 90vh;
    }

    .promo-hero-content {
        padding: 8rem 0 5rem;
    }

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

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

    .promo-hero-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .promo-hero-cta {
        flex-direction: row;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .promo-hero h1 {
        font-size: 2.75rem;
    }

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

    .highlight-item {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .promo-hero h1 {
        font-size: 3rem;
    }
}

/* Extra small mobile (< 360px) */
@media (max-width: 359px) {
    .promo-hero h1 {
        font-size: 1.375rem;
    }

    .promo-badge-main {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .highlight-item {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
    }
}

/* Promo Intro Section */
.promo-intro {
    padding: 3rem 0 2rem;
    background: var(--bg-primary);
}

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

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

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

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

    .promo-intro-content p {
        font-size: 1.0625rem;
    }
}

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

.promo-section-alt {
    background: var(--bg-secondary);
}

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

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

/* Promo Section Grid - Two Column Layout */
.promo-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.promo-section-grid-reverse .promo-section-content {
    order: 1;
}

.promo-section-grid-reverse .promo-section-image {
    order: 2;
}

@media (min-width: 1024px) {
    .promo-section-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .promo-section-grid-reverse .promo-section-content {
        order: 2;
    }

    .promo-section-grid-reverse .promo-section-image {
        order: 1;
    }
}

/* Promo Section Badge */
.promo-section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 255, 0.1) 100%);
    border: 1px solid var(--border-secondary);
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* Promo Section Content */
.promo-section-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

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

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

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

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

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

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

@media (min-width: 768px) {
    .promo-section-content h2 {
        font-size: 1.75rem;
    }

    .promo-section-content h3 {
        font-size: 1.25rem;
    }

    .promo-section-content p {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1024px) {
    .promo-section-content h2 {
        font-size: 2rem;
    }
}

/* Promo Section Image */
.promo-section-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

/* Promo Content Block */
.promo-content-block {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

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

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

.promo-content-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

@media (min-width: 768px) {
    .promo-content-block p {
        font-size: 1.0625rem;
    }

    .promo-content-block h3 {
        font-size: 1.375rem;
    }
}

/* Steps Box */
.steps-box {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
    position: relative;
    overflow: hidden;
}

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

.steps-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    text-align: center;
}

.promo-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    counter-reset: step;
}

.promo-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: border-color 0.25s ease;
}

.promo-steps-list li:hover {
    border-color: var(--border-secondary);
}

.promo-steps-list .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: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.promo-steps-list .step-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding-top: 0.375rem;
}

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

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

    .steps-box h3 {
        font-size: 1.25rem;
    }

    .promo-steps-list .step-text {
        font-size: 1rem;
    }
}

/* Promo Benefits Box */
.promo-benefits-box {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

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

.promo-benefits-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

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

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

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

    .promo-benefits-box h3 {
        font-size: 1.25rem;
    }

    .promo-benefits-box p {
        font-size: 1rem;
    }
}

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

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

.promo-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    font-size: 0.875rem;
}

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

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

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

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

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

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

@media (min-width: 768px) {
    .promo-comparison-table {
        font-size: 0.9375rem;
    }

    .promo-comparison-table th,
    .promo-comparison-table td {
        padding: 1rem 1.25rem;
    }
}

/* VIP Features Grid */
.vip-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.vip-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.vip-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 255, 0.1) 100%);
    margin-bottom: 0.875rem;
}

.vip-feature-icon svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.vip-feature-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

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

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

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

    .vip-feature-icon {
        width: 70px;
        height: 70px;
    }

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

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

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.payment-method:hover {
    transform: translateY(-4px);
    border-color: var(--border-secondary);
}

.payment-method svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

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

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

    .payment-method {
        padding: 2rem 1.5rem;
    }

    .payment-method span {
        font-size: 0.9375rem;
    }
}

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

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

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

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

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

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

.promo-cta-buttons .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    min-width: 200px;
}

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

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

    .promo-cta-content p {
        font-size: 1.0625rem;
    }

    .promo-cta-buttons {
        flex-direction: row;
    }
}

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

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