/* ==========================================================================
   DAVIN888 - MAIN STYLESHEET
   Cyberpunk Neon Theme - Electric Blue & Purple
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
    /* Primary Colors - Cyberpunk Neon */
    --bg-primary: #0a0a12;
    --bg-secondary: #12121f;
    --bg-tertiary: #1a1a2e;
    --bg-hover: #252540;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b4b4c7;
    --text-muted: #6c6c8a;

    /* Accent Colors - Electric Blue & Purple */
    --accent-primary: #00d4ff;
    --accent-primary-rgb: 0, 212, 255;
    --accent-secondary: #a855f7;
    --accent-secondary-rgb: 168, 85, 247;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00e5ff 0%, #c084fc 100%);

    /* Borders */
    --border-primary: rgba(255, 255, 255, 0.08);
    --border-secondary: rgba(0, 212, 255, 0.3);
    --border-glow: 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 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(168, 85, 247, 0.3);

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

    /* 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: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* Skip Link 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 var(--transition-fast);
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
}

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

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

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

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

.header-logo {
    height: 38px;
    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: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

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

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--text-primary);
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 60%;
}

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-normal);
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px 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: 1px solid var(--border-primary);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.1);
}

.mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

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

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

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

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

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

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

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

.nav-menu.active li {
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
}

.nav-menu.active li:nth-child(1) { animation-delay: 0.05s; }
.nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
.nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
.nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
.nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.nav-menu.active li a:hover {
    background: rgba(0, 212, 255, 0.1);
}

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

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

.mobile-cta-item .btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-normal);
}

.mobile-cta-item .btn-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(var(--accent-primary-rgb), 0.5);
}

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

    .header-logo {
        height: 42px;
    }

    .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 {
        opacity: 1;
        animation: none;
    }

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 46px;
    }

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

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

    .header-logo {
        height: 50px;
    }
}

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

footer[role="contentinfo"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.5;
}

.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;
    transition: transform var(--transition-fast);
}

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

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

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    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: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(3px);
}

/* 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;
    transition: color var(--transition-fast);
}

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

/* Trust Badges Section */
.footer-trust {
    padding: 2rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 1.5rem;
}

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

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

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

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

.trust-badge:hover svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 8px rgba(var(--accent-secondary-rgb), 0.5));
}

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

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

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

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

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

/* Tablet - 768px+ */
@media (min-width: 768px) {
    footer[role="contentinfo"] {
        padding-bottom: 100px;
    }

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

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

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

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

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

    .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, 10, 18, 0.98);
    border-top: 1px solid var(--border-glow);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-normal);
}

/* 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);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

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

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

/* Content Section Base */
.content-section {
    padding: 3rem 0;
}

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

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

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(var(--accent-primary-rgb), 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(var(--accent-secondary-rgb), 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

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

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

.hero-highlight {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.hero-cta-group .btn {
    width: 100%;
    max-width: 280px;
    gap: 0.5rem;
}

.hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-secondary);
}

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

/* ==========================================================================
   FEATURES STRIP
   ========================================================================== */
.features-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    padding: 1.25rem 0;
    overflow: hidden;
}

.features-strip-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.feature-strip-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   CONTENT GRID
   ========================================================================== */
.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.content-image-wrapper {
    width: 100%;
    max-width: 500px;
}

.content-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

.content-text {
    width: 100%;
}

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

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

/* Subsection */
.subsection {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-primary);
}

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

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

/* ==========================================================================
   GAME PROVIDERS CARDS
   ========================================================================== */
.game-providers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.provider-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    transition: all var(--transition-normal);
}

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

.provider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.provider-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.provider-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   CASINO GAMES GRID
   ========================================================================== */
.casino-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

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

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

.casino-game-icon {
    margin-bottom: 0.75rem;
}

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

.casino-game-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.casino-game-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   TRANSACTION TABLE
   ========================================================================== */
.transaction-table-wrapper {
    margin-top: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.transaction-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
}

.transaction-table thead {
    background: var(--bg-hover);
}

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

.transaction-table td {
    padding: 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-primary);
}

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

.transaction-table tbody tr:hover {
    background: var(--bg-hover);
}

.channel-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.channel-badge.wallet {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-primary);
}

.channel-badge.bank {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-secondary);
}

.channel-badge.promptpay {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* ==========================================================================
   SECURITY BADGES
   ========================================================================== */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

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

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

/* ==========================================================================
   STEPS GRID
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

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

.step-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

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

/* ==========================================================================
   REGISTRATION SECTION
   ========================================================================== */
.registration-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.registration-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.registration-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.registration-content p:last-of-type {
    margin-bottom: 1.5rem;
}

.registration-content .btn {
    gap: 0.5rem;
}

/* ==========================================================================
   LOGIN SECTION
   ========================================================================== */
.login-section {
    background: var(--bg-secondary);
}

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

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

/* ==========================================================================
   SUPPORT SECTION
   ========================================================================== */
.support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.support-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.support-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    min-width: 120px;
}

.support-channel:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

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

.support-channel span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background: var(--bg-primary);
}

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

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

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

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

.faq-item dt {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-hover);
    border-bottom: 1px solid var(--border-primary);
}

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

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

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(var(--accent-primary-rgb), 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

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

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

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

.cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    gap: 0.5rem;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

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

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

    .feature-strip-item {
        font-size: 0.9375rem;
    }

    .feature-strip-item svg {
        width: 24px;
        height: 24px;
    }
}

/* Medium Mobile - 480px+ */
@media (min-width: 480px) {
    .section-container {
        padding: 0 1.25rem;
    }

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

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

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

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

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

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

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

/* Large Mobile / Phablet - 576px+ */
@media (min-width: 576px) {
    .content-section {
        padding: 3.5rem 0;
    }

    .hero-section {
        padding: 2.5rem 0 3.5rem;
    }

    .section-container {
        padding: 0 1.5rem;
    }

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

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

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

    .casino-games-grid {
        gap: 1rem;
    }
}

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

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

    .section-header {
        margin-bottom: 3rem;
    }

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

    /* Hero */
    .hero-section {
        padding: 3rem 0 4rem;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        padding: 0 2rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
    }

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

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

    .hero-image-wrapper {
        flex: 1;
        max-width: 50%;
    }

    .hero-image {
        max-width: 100%;
    }

    /* Content Grid */
    .content-grid {
        flex-direction: row;
        gap: 3rem;
    }

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

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

    .content-text {
        flex: 1;
    }

    /* Game Providers */
    .game-providers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Casino Games */
    .casino-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Features Strip */
    .features-strip-container {
        gap: 2rem;
    }

    .feature-strip-item {
        font-size: 1rem;
    }

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

    /* Registration Card */
    .registration-card {
        padding: 3rem 2.5rem;
    }

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

    /* CTA Section */
    .cta-section {
        padding: 5rem 0;
    }

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

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

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

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

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

    /* Hero */
    .hero-section {
        padding: 4rem 0 5rem;
    }

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

    .hero-content h1 {
        font-size: 2.75rem;
    }

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

    /* Content Grid */
    .content-grid {
        gap: 4rem;
    }

    /* Subsection */
    .subsection h3 {
        font-size: 1.5rem;
    }

    /* Registration */
    .registration-card {
        padding: 4rem 3rem;
    }

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

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

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

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .content-section {
        padding: 6rem 0;
    }
}

/* Extra Large - 1536px+ */
@media (min-width: 1536px) {
    .hero-content h1 {
        font-size: 3.25rem;
    }

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

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

/* Promotions Hero Section - Full Screen with Overlay */
.promo-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

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

.promo-hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.promo-hero-cta .btn {
    width: 100%;
    max-width: 260px;
    gap: 0.5rem;
}

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

.promo-featured-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-featured-image {
    width: 100%;
    margin: 0;
}

.promo-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-secondary);
}

.promo-featured-content {
    width: 100%;
}

.promo-badge-featured {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.promo-featured-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.promo-conditions {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.promo-conditions h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

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

/* Promotions Content Section */
.promo-section {
    padding: 3rem 0;
}

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

.promo-content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-content-image {
    width: 100%;
    margin: 0;
}

.promo-content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

.promo-content-text {
    width: 100%;
}

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

.promo-source-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.promo-source-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.promo-source-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.promo-source-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.promo-source-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.promo-source-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
}

/* Promotions Cards Grid */
.promo-cards-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

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

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

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

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

.promo-card:hover::before {
    opacity: 1;
}

.promo-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.promo-card-badge-vip {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.promo-card-badge-daily {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.promo-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(var(--accent-primary-rgb), 0.1);
    border: 1px solid var(--border-secondary);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

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

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

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

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

.promo-card-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.promo-card-details li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.promo-card-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

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

.promo-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.promo-table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
}

.promo-table thead {
    background: var(--bg-hover);
}

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

.promo-table td {
    padding: 1rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-primary);
}

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

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

.member-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.member-regular {
    background: rgba(var(--accent-primary-rgb), 0.15);
    color: var(--accent-primary);
}

.member-silver {
    background: rgba(192, 192, 192, 0.2);
    color: #c0c0c0;
}

.member-gold {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

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

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

.promo-system-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: center;
}

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

.promo-feature-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.promo-feature-icon {
    margin-bottom: 0.75rem;
}

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

.promo-feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

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

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

.promo-games-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

.provider-icon-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--bg-primary);
    margin: 0 auto 0.75rem;
}

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

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

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

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

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

.promo-cta-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.promo-cta-box > p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

/* Large Mobile / Phablet - 576px+ */
@media (min-width: 576px) {
    .promo-hero-section {
        min-height: 65vh;
    }

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

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

    .promo-featured-section,
    .promo-section,
    .promo-cards-section,
    .promo-table-section,
    .promo-system-section,
    .promo-games-section,
    .promo-support-section,
    .promo-faq-section {
        padding: 4rem 0;
    }

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

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

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

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

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

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

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

    .promo-featured-section,
    .promo-section,
    .promo-cards-section,
    .promo-table-section,
    .promo-system-section,
    .promo-games-section,
    .promo-support-section,
    .promo-faq-section {
        padding: 5rem 0;
    }

    .promo-featured-grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .promo-featured-image {
        flex: 0 0 45%;
    }

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

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

    .promo-content-image {
        flex: 0 0 40%;
    }

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

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

    .promo-cta-box {
        padding: 2.5rem 2rem;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .promo-hero-section {
        min-height: 75vh;
    }

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

    .promo-featured-section,
    .promo-section,
    .promo-cards-section,
    .promo-table-section,
    .promo-system-section,
    .promo-games-section,
    .promo-support-section,
    .promo-faq-section {
        padding: 6rem 0;
    }

    .promo-featured-grid {
        gap: 4rem;
    }

    .promo-content-grid {
        gap: 4rem;
    }
}

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

    .promo-featured-section,
    .promo-section,
    .promo-cards-section,
    .promo-table-section,
    .promo-system-section,
    .promo-games-section,
    .promo-support-section,
    .promo-faq-section {
        padding: 7rem 0;
    }
}
