/* ==========================================================================
   KC9 - MAIN STYLESHEET
   Unique Design: Electric Blue Cyber Gaming Theme
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Primary Colors - Electric Blue Cyber Theme */
    --accent-primary: #00d4ff;
    --accent-secondary: #0099cc;
    --accent-tertiary: #00ffff;
    --accent-primary-rgb: 0, 212, 255;

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #00ffff 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00ffff 0%, #00d4ff 50%, #0066ff 100%);
    --bg-gradient: linear-gradient(180deg, #0a0e1a 0%, #121829 50%, #0d1220 100%);

    /* Background Colors */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0d1220;
    --bg-tertiary: #131b2e;
    --bg-hover: #1a2540;
    --bg-card: rgba(13, 18, 32, 0.95);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8b5c8;
    --text-muted: #5a6b80;

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

    /* 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 30px rgba(0, 212, 255, 0.3);
    --shadow-glow-strong: 0 0 50px rgba(0, 212, 255, 0.5);

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

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

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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    -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;
    color: var(--text-primary);
}

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

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition-normal);
}

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

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

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

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

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

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

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

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

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

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    color: var(--bg-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 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: var(--radius-md);
    border: 1px solid var(--border-secondary);
}

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

/* Hamburger Animation */
.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 var(--transition-normal), visibility var(--transition-normal);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;
}

/* Mobile Menu - Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    border-left: 1px solid var(--border-secondary);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    animation: slideInMenu 0.3s ease;
}

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

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

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

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-lg);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

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

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

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

/* Footer Brand */
.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 10px 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: 340px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 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(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

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

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

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

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

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

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

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

/* Trust Badges */
.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: 1.5rem 2.5rem;
}

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

.trust-badge:hover {
    color: var(--accent-primary);
}

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

.trust-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

/* ==========================================================================
   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, 26, 0.96);
    border-top: 1px solid var(--border-secondary);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.375rem;
    border-radius: var(--radius-md);
    font-family: '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 var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

/* Secondary Buttons */
.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 */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 2px 12px rgba(0, 212, 255, 0.35);
}

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

/* 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: var(--radius-sm);
    }
}

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

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

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

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

/* ==========================================================================
   RESPONSIVE - TABLET (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    /* Header */
    .header-container {
        padding: 0.875rem 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;
        border: none;
        box-shadow: none;
        animation: none;
    }

    .nav-menu li a {
        padding: 0.5rem 0.875rem;
        font-size: 0.9375rem;
    }

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

    .header-cta {
        display: block;
    }

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

    .trust-badges {
        gap: 2.5rem;
    }

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

    /* Sticky Buttons */
    .sticky-bottom-bar {
        padding: 1rem 2rem;
        gap: 0.875rem;
    }

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

/* ==========================================================================
   RESPONSIVE - DESKTOP (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    /* Header */
    .header-container {
        padding: 1rem 3rem;
    }

    .header-logo {
        height: 52px;
    }

    .nav-menu li a {
        padding: 0.5rem 1.125rem;
    }

    /* Footer */
    .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-logo-link {
        display: block;
    }

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

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

    /* Sticky Buttons */
    .sticky-bottom-bar {
        justify-content: center;
        padding: 1rem 3rem;
        gap: 1rem;
    }

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

/* ==========================================================================
   RESPONSIVE - LARGE DESKTOP (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    .header-container {
        padding: 1rem 4rem;
    }

    .footer-container {
        padding: 4.5rem 4rem 2rem;
    }

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* ==========================================================================
   HERO SECTION - Full Width Background with Centered Content
   ========================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 1rem 3rem;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .text-gradient {
    display: block;
    margin-top: 0.25rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    color: var(--bg-primary);
}

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

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

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

/* ==========================================================================
   FEATURES HIGHLIGHTS SECTION
   ========================================================================== */
.features-highlights {
    padding: 3rem 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: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
}

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

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* ==========================================================================
   CONTENT WITH IMAGE LAYOUT
   ========================================================================== */
.slot-games-section,
.live-casino-section,
.deposit-section {
    padding: 3rem 0;
}

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

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

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

.content-with-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

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

.content-image:hover img {
    transform: scale(1.03);
}

.content-text {
    flex: 1;
}

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

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

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

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

.content-text u {
    text-decoration: none;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ==========================================================================
   PROVIDERS SECTION
   ========================================================================== */
.providers-section {
    margin-top: 2rem;
}

.providers-section h3 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.providers-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

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

.provider-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.provider-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.provider-highlight {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.provider-games {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-primary);
}

/* ==========================================================================
   CASINO GAMES INFO
   ========================================================================== */
.casino-games-info {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

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

.casino-games-info p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.casino-games-info strong {
    color: var(--accent-primary);
}

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

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

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

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

.promotions-content p:last-of-type {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
}

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

.promo-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.625rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

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

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

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

/* ==========================================================================
   PAYMENT INFO & STEPS
   ========================================================================== */
.payment-info {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

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

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

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

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

.deposit-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 0.75rem 0 0.75rem 3rem;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
    line-height: 1.6;
}

.deposit-steps li:last-child {
    border-bottom: none;
}

.deposit-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
}

/* ==========================================================================
   LOGIN & REGISTER SECTIONS
   ========================================================================== */
.login-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

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

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

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

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

.login-cta {
    margin-top: 1.5rem;
}

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

.register-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.08) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
}

.register-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.register-content u {
    text-decoration: none;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    min-width: 120px;
    transition: all var(--transition-normal);
}

.security-badge:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.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: 600;
    color: var(--text-primary);
    text-align: center;
}

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

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

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

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

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

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

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

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

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 50%, rgba(0, 255, 255, 0.05) 100%);
    border-top: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-accent);
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

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

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE (360px+)
   ========================================================================== */
@media (min-width: 360px) {
    .hero-title {
        font-size: 1.875rem;
    }

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

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

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

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

/* ==========================================================================
   RESPONSIVE - MEDIUM MOBILE (480px+)
   ========================================================================== */
@media (min-width: 480px) {
    .section-container {
        padding: 0 1.25rem;
    }

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

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

    .features-grid {
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .providers-grid {
        gap: 1.25rem;
    }

    .promotions-grid {
        gap: 1.25rem;
    }

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

/* ==========================================================================
   RESPONSIVE - LARGE MOBILE / PHABLET (576px+)
   ========================================================================== */
@media (min-width: 576px) {
    .section-container {
        padding: 0 1.5rem;
    }

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

    .hero {
        padding: 5rem 1.5rem 4rem;
    }

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

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

    .features-highlights {
        padding: 3.5rem 0;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-title {
        font-size: 1.0625rem;
    }

    .feature-text {
        font-size: 0.875rem;
    }

    .slot-games-section,
    .live-casino-section,
    .deposit-section {
        padding: 3.5rem 0;
    }

    .provider-card {
        padding: 1.5rem;
    }

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

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

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

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

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

/* ==========================================================================
   RESPONSIVE - TABLET (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .section-container {
        padding: 0 2rem;
    }

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

    .hero {
        min-height: 90vh;
        padding: 6rem 2rem 5rem;
    }

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

    .hero-title .text-gradient {
        display: inline;
    }

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

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

    .features-highlights {
        padding: 4rem 0;
    }

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

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

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

    .slot-games-section,
    .live-casino-section,
    .deposit-section {
        padding: 4rem 0;
    }

    .content-with-image {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .content-image {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .content-reversed {
        flex-direction: row-reverse;
    }

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

    .promotions-section {
        padding: 4rem 0;
    }

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

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

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

    .login-section,
    .register-section,
    .support-section,
    .security-section,
    .faq-section {
        padding: 4rem 0;
    }

    .register-card {
        padding: 3rem 2.5rem;
    }

    .security-badges {
        gap: 2rem;
    }

    .security-badge {
        min-width: 140px;
        padding: 1.5rem 2rem;
    }

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

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

    .final-cta-content p {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   RESPONSIVE - LARGE TABLET / SMALL DESKTOP (992px+)
   ========================================================================== */
@media (min-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

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

    .content-with-image {
        gap: 3rem;
    }

    .content-image {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .faq-item dt {
        padding: 1.5rem 1.5rem 0.875rem;
    }

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

/* ==========================================================================
   RESPONSIVE - DESKTOP (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    .section-container {
        padding: 0 3rem;
    }

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

    .hero {
        padding: 7rem 3rem 6rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-highlights {
        padding: 4.5rem 0;
    }

    .features-grid {
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .slot-games-section,
    .live-casino-section,
    .deposit-section {
        padding: 5rem 0;
    }

    .providers-grid {
        gap: 2rem;
    }

    .promotions-section {
        padding: 5rem 0;
    }

    .promotions-grid {
        gap: 2rem;
    }

    .login-section,
    .register-section,
    .support-section,
    .security-section,
    .faq-section {
        padding: 5rem 0;
    }

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

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

/* ==========================================================================
   RESPONSIVE - LARGE DESKTOP (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    .section-container {
        padding: 0 4rem;
    }

    .hero-title {
        font-size: 3.25rem;
    }

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

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

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

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

/* ==========================================================================
   RESPONSIVE - EXTRA LARGE (1536px+)
   ========================================================================== */
@media (min-width: 1536px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid {
        gap: 2.5rem;
    }

    .providers-grid {
        gap: 2.5rem;
    }

    .promotions-grid {
        gap: 2.5rem;
    }
}

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

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

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

.promo-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.promo-hero-title .text-gradient {
    display: block;
    margin-top: 0.25rem;
}

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

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

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

.promo-hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero-subtext strong {
    color: var(--text-secondary);
}

.promo-hero-subtext u {
    text-decoration: none;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

.promo-steps li {
    counter-increment: promo-step-counter;
    position: relative;
    padding: 1rem 0 1rem 3.5rem;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.promo-steps li:last-child {
    border-bottom: none;
}

.promo-steps li::before {
    content: counter(promo-step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
}

.promo-steps-cta {
    text-align: center;
}

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

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

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

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

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

/* Bonus Table */
.promo-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

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

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

.promo-bonus-table th {
    background: var(--bg-tertiary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    white-space: nowrap;
}

.promo-bonus-table td {
    background: var(--bg-card);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

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

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

/* Terms Card */
.promo-terms-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-terms-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.promo-terms-card p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

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

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

.promo-terms-card u {
    text-decoration: none;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.promo-cashback-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

/* Tiers Card */
.promo-tiers-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-tiers-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.promo-tiers-card p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

.promo-tiers-card strong {
    color: var(--accent-primary);
}

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

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

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

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

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

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

.promo-vip-content u {
    text-decoration: none;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* VIP Tiers Grid */
.promo-vip-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.vip-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #a8a8a8 0%, #c0c0c0 50%, #a8a8a8 100%);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vip-tier-badge.vip-gold {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
}

.vip-tier-badge.vip-platinum {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #6b7280 100%);
}

.vip-tier-badge.vip-diamond {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #60a5fa 100%);
}

.vip-tier-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

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

.vip-tier-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-primary);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.vip-tier-benefits li:last-child {
    border-bottom: none;
}

/* VIP Note */
.promo-vip-note {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-vip-note h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.promo-vip-note p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

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

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

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

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

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

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

/* Monthly Card */
.promo-monthly-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

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

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

.promo-monthly-card strong {
    color: var(--accent-primary);
}

.promo-monthly-card u {
    text-decoration: none;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.promo-events-image {
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.promo-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent-primary);
}

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

.promo-type-value {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.promo-type-card p:last-child {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Types Note */
.promo-types-note {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.promo-types-note h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.promo-types-note p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

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

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

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

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

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

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

/* Final CTA (Promo Page) */
.promo-final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 50%, rgba(0, 255, 255, 0.05) 100%);
    border-top: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-accent);
}

.promo-final-cta-content {
    text-align: center;
}

.promo-final-cta-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

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

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

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .promo-hero-title {
        font-size: 1.875rem;
    }

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

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .promo-hero-title {
        font-size: 2rem;
    }

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

    .promo-final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .promo-hero {
        padding: 5rem 0 4rem;
    }

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

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

    .promo-welcome-section,
    .promo-deposit-section,
    .promo-cashback-section,
    .promo-vip-section,
    .promo-events-section,
    .promo-types-section,
    .promo-mobile-section,
    .promo-faq-section {
        padding: 3.5rem 0;
    }

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

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

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

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

    .promo-hero-title .text-gradient {
        display: inline;
    }

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

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

    .promo-welcome-section,
    .promo-deposit-section,
    .promo-cashback-section,
    .promo-vip-section,
    .promo-events-section,
    .promo-types-section,
    .promo-mobile-section,
    .promo-faq-section {
        padding: 4rem 0;
    }

    .promo-cashback-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .promo-cashback-image {
        flex: 0 0 45%;
        max-width: 45%;
    }

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

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

    .vip-tier-card {
        padding: 2.5rem 1rem 1.75rem;
    }

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

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

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

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

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

/* Large Tablet / Small Desktop (992px+) */
@media (min-width: 992px) {
    .promo-hero-title {
        font-size: 2.75rem;
    }

    .promo-cashback-grid {
        gap: 3rem;
    }

    .promo-cashback-image {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

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

    .promo-hero-title {
        font-size: 3rem;
    }

    .promo-welcome-section,
    .promo-deposit-section,
    .promo-cashback-section,
    .promo-vip-section,
    .promo-events-section,
    .promo-types-section,
    .promo-mobile-section,
    .promo-faq-section {
        padding: 5rem 0;
    }

    .promo-vip-tiers {
        gap: 2rem;
    }

    .promo-types-grid {
        gap: 2rem;
    }

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

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

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

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

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