/* ==========================================================================
   IB888 - Main Styles
   Electric Blue & Gold Casino Theme
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Primary Colors - Electric Blue & Gold */
    --accent-primary: #00d4ff;
    --accent-primary-rgb: 0, 212, 255;
    --accent-secondary: #ffd700;
    --accent-secondary-rgb: 255, 215, 0;

    /* Background Colors */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-tertiary: #1a2332;
    --bg-hover: #243044;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Border Colors */
    --border-primary: rgba(0, 212, 255, 0.15);
    --border-secondary: rgba(255, 215, 0, 0.2);

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #006699 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #cc8800 100%);
    --bg-gradient: linear-gradient(180deg, #0a0e17 0%, #111827 100%);

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

/* ==========================================================================
   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: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
}

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

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    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.625rem 1rem;
}

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

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

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

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

.nav-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    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: 25px;
    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: 0 2px 12px rgba(var(--accent-primary-rgb), 0.3);
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--accent-primary-rgb), 0.5);
}

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

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 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: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    border-left: 1px solid var(--border-primary);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

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

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

.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;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(var(--accent-primary-rgb), 0.3);
}

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

    .header-logo {
        height: 48px;
    }

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

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

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

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

/* Extra Large - 1280px+ */
@media (min-width: 1280px) {
    .header-container {
        padding: 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: 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: 2.5rem;
    margin-bottom: 2.5rem;
}

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

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

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

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

.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: 12px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(var(--accent-primary-rgb), 0.4);
}

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

.footer-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent-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 0.2s, padding-left 0.2s;
    display: inline-block;
}

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

/* Footer Contact */
.footer-contact {
    font-style: normal;
    margin-top: 1.25rem;
    font-size: 0.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.625rem;
    color: var(--text-secondary);
    padding: 0.75rem;
    border-radius: 12px;
    transition: background 0.2s;
}

.trust-badge:hover {
    background: rgba(0, 212, 255, 0.05);
}

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

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

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

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

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

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

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

    .footer-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 {
        text-align: right;
        max-width: none;
    }
}

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

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

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

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

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

    .footer-top {
        gap: 4rem;
    }
}

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

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

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 20px;
    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;
}

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

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

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

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--accent-primary-rgb), 0.5);
}

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

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

/* 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.875rem 1.5rem;
        gap: 0.75rem;
    }

    .sticky-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        border-radius: 25px;
    }
}

/* 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;
        gap: 1.25rem;
    }

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

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

.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: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--accent-primary-rgb), 0.4);
}

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

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

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

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

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border-radius: 30px;
}

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

.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 & HEADERS
   ========================================================================== */

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

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

/* ==========================================================================
   HERO SECTION - Pattern 3: Centered Full-Width with Background
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 23, 0.85) 0%,
        rgba(10, 14, 23, 0.75) 30%,
        rgba(10, 14, 23, 0.85) 70%,
        rgba(10, 14, 23, 0.95) 100%
    );
}

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

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

.hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -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.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-primary);
    border-radius: 30px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.hero-badge svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

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

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

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

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

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

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

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

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

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-description,
    .hero-subtext {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

    .hero-badge svg {
        width: 20px;
        height: 20px;
    }
}

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

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

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

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

.provider-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.provider-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 16px;
}

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

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

.provider-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.provider-stats .stat {
    color: var(--text-muted);
}

.provider-stats strong {
    color: var(--accent-secondary);
}

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

/* Benefits Box */
.benefits-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
}

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

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

/* Slots Responsive */
@media (min-width: 576px) {
    .providers-grid {
        gap: 1.25rem;
    }

    .provider-card {
        padding: 2rem 1.5rem;
    }

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

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

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

    .benefits-box {
        padding: 2rem;
    }
}

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

    .providers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

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

.casino-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

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

.casino-features {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

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

.casino-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.casino-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.casino-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 50%;
}

.casino-features li:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

    .casino-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .casino-content h2 {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   ACCESS SECTION
   ========================================================================== */

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

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

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

/* Device Grid */
.device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.device-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

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

.device-card svg {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.device-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

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

/* Access Responsive */
@media (min-width: 768px) {
    .access-section {
        padding: 5rem 0;
    }

    .device-grid {
        gap: 1.5rem;
    }

    .device-card {
        padding: 2rem 1.5rem;
    }

    .device-card svg {
        width: 56px;
        height: 56px;
    }
}

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

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

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

.register-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.register-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
    order: -1;
}

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

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

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

.register-content .btn {
    margin-top: 1rem;
}

/* Register Steps */
.register-steps {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

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

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

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

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

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

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

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

    .register-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .register-image {
        order: 0;
    }

    .register-content h2 {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */

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

.promos-section .section-container > p {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.promo-card {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-secondary);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.375rem 1rem;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

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

.promo-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.promo-card > p:last-of-type {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

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

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

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

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

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

/* Payment Features */
.payment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.payment-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

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

.payment-feature h4 {
    font-size: 1rem;
    color: var(--accent-secondary);
    margin: 0;
}

.payment-feature p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

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

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

/* Payment Responsive */
@media (min-width: 576px) {
    .payment-feature {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
    }

    .payment-feature div {
        text-align: left;
    }
}

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

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

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

    .payment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .payment-content h2 {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */

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

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

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

/* Security Badges */
.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

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

.security-badge svg {
    color: var(--accent-primary);
}

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

/* Security Responsive */
@media (min-width: 576px) {
    .security-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

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

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

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

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

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

/* Support Channels */
.support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.support-channel:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

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

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

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

/* Support Responsive */
@media (min-width: 768px) {
    .support-section {
        padding: 5rem 0;
    }

    .support-channels {
        gap: 1.5rem;
    }

    .support-channel {
        padding: 2rem 1.5rem;
    }
}

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

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

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

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.4;
}

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

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

/* CTA Responsive */
@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
    }

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

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

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

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

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

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

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

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

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

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

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

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

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

    .faq-item {
        padding: 2rem;
    }

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

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

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

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

/* Promotions Hero - Pattern 4: Stacked/Vertical */
.promo-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.promo-hero-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.promo-hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -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.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.promo-hero-cta {
    margin-bottom: 2rem;
}

.promo-hero-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

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

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

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

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

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

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

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

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

/* ==========================================================================
   PROMOTIONS CONTENT SECTIONS
   ========================================================================== */

.promo-free-credit-section,
.promo-code-section,
.promo-deposit-section,
.promo-daily-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.promo-welcome-section,
.promo-cashback-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

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

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

/* Steps Card */
.promo-steps-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.promo-steps-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.promo-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

.promo-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--accent-secondary);
    border-radius: 0 8px 8px 0;
}

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

.promo-two-col-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.promo-two-col-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
    order: -1;
}

.promo-two-col-image img {
    width: 100%;
    height: auto;
}

/* Condition Box */
.promo-condition-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

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

.promo-condition-box p {
    margin-bottom: 0;
}

/* Channels Card */
.promo-channels-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.promo-channels-card > p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.promo-channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    transition: transform 0.2s, border-color 0.2s;
}

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

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

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

.promo-channel-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Promotions Table */
.promo-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.promo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.promo-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.promo-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    white-space: nowrap;
}

.promo-table td {
    padding: 1rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-primary);
}

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

.promo-table .highlight-row {
    background: rgba(255, 215, 0, 0.08);
}

.promo-table .highlight-row:hover {
    background: rgba(255, 215, 0, 0.12);
}

.promo-table .highlight-row td {
    color: var(--accent-secondary);
    font-weight: 600;
}

/* Mobile Table */
@media (max-width: 639px) {
    .promo-table thead {
        display: none;
    }

    .promo-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border-radius: 12px;
        border: 1px solid var(--border-primary);
    }

    .promo-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        border-top: none;
        border-bottom: 1px solid var(--border-primary);
    }

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

    .promo-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--accent-primary);
        margin-right: 1rem;
    }
}

/* VIP Card */
.promo-vip-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.promo-vip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    margin: 0 auto;
}

.promo-vip-icon svg {
    color: var(--bg-primary);
}

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

.promo-vip-content > p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.promo-vip-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.promo-vip-benefits li:last-child {
    margin-bottom: 0;
}

.promo-vip-benefits svg {
    flex-shrink: 0;
    color: var(--accent-secondary);
}

/* Daily Spin Features */
.promo-spin-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.promo-spin-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    transition: transform 0.2s, border-color 0.2s;
}

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

.promo-spin-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 50%;
}

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

.promo-spin-feature h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

.promo-spin-feature p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Promotions CTA Section */
.promo-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

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

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

.promo-cta-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promo-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.promo-cta-note {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.promo-cta-link {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

.promo-cta-link a:hover {
    color: var(--accent-secondary);
}

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

/* ==========================================================================
   PROMOTIONS PAGE RESPONSIVE
   ========================================================================== */

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

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

@media (min-width: 640px) {
    .promo-channels-grid {
        gap: 1.5rem;
    }

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

    .promo-channel-item svg {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 768px) {
    .promo-free-credit-section,
    .promo-code-section,
    .promo-deposit-section,
    .promo-daily-section,
    .promo-welcome-section,
    .promo-cashback-section {
        padding: 5rem 0;
    }

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

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

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

    .promo-vip-card {
        flex-direction: row;
        text-align: left;
        padding: 2.5rem;
    }

    .promo-vip-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .promo-vip-content h3,
    .promo-vip-content > p {
        text-align: left;
    }

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

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

    .promo-spin-features {
        gap: 1.5rem;
    }

    .promo-spin-feature {
        padding: 2rem 1.5rem;
    }
}

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

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

    .promo-two-col {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .promo-two-col-image {
        order: 0;
    }

    .promo-two-col-content h2 {
        font-size: 2.25rem;
    }

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