/* ==========================================================================
   KHAO555 SLOT - Main Stylesheet
   Color Theme: Emerald Green & Gold - Rice Field Inspired
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
    /* Primary Colors - Emerald Green Theme */
    --accent-primary: #10b981;
    --accent-primary-rgb: 16, 185, 129;
    --accent-secondary: #059669;
    --accent-tertiary: #047857;
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --accent-gradient-hover: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);

    /* Gold Accent */
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

    /* Background Colors - Dark Theme */
    --bg-primary: #0a0f0d;
    --bg-secondary: #111916;
    --bg-tertiary: #1a2420;
    --bg-hover: #243029;
    --bg-card: rgba(26, 36, 32, 0.95);

    /* Text Colors */
    --text-primary: #f0fdf4;
    --text-secondary: #a7c4b8;
    --text-muted: #6b8f7e;
    --text-accent: #34d399;

    /* Border Colors */
    --border-primary: rgba(16, 185, 129, 0.15);
    --border-secondary: rgba(16, 185, 129, 0.25);
    --border-accent: rgba(16, 185, 129, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.2);

    /* 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-primary);
    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(--text-accent);
}

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 8px 16px;
    z-index: 10000;
    transition: top var(--transition-fast);
}

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

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 15, 13, 0.97) 100%);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

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

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.3));
    transition: filter var(--transition-normal), transform var(--transition-normal);
}

.brand a:hover .header-logo {
    filter: drop-shadow(0 4px 16px rgba(16, 185, 129, 0.5));
    transform: scale(1.02);
}

/* 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: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

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

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

.nav-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--bg-hover);
    border-color: var(--border-secondary);
}

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    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: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-left: 1px solid var(--border-primary);
    padding: 5rem 1.25rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
}

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

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    margin-bottom: 0.25rem;
}

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

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

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(var(--accent-primary-rgb), 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;
    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 */
.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 2px 8px rgba(16, 185, 129, 0.2));
    transition: filter var(--transition-normal);
}

.footer-logo-link:hover .footer-logo {
    filter: drop-shadow(0 4px 16px rgba(16, 185, 129, 0.4));
}

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

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

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

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

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

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

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-column:not(.footer-brand) .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.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-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(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;
    transition: color var(--transition-fast);
}

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

/* Trust Badges Section */
.footer-trust {
    padding: 2rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 2rem;
    background: linear-gradient(90deg, transparent, var(--bg-tertiary), transparent);
}

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

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

.trust-badge:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

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

.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: linear-gradient(180deg, rgba(10, 15, 13, 0.95) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    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: 10px;
    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: all var(--transition-normal);
}

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

.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 16px rgba(var(--accent-primary-rgb), 0.4);
}

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

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

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

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

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

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

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

    .header-cta {
        display: block;
    }

    /* Footer Tablet */
    .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-column:not(.footer-brand) .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;
    }

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

    .sticky-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
        max-width: 200px;
        border-radius: 12px;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

    /* Footer Desktop */
    .footer-container {
        padding: 4rem 3rem 2rem;
    }

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

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

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

    .footer-logo {
        height: 52px;
    }

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

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

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

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

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

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

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

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

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

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(var(--accent-primary-rgb), 0.1);
}

.btn-full {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

.section-image figcaption {
    background: var(--bg-tertiary);
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-top: 1px solid var(--border-primary);
}

/* Section Highlight */
.section-highlight {
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.1) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 1.625rem;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-primary) 50%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

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

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

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

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

/* Providers Table */
.providers-table-wrapper {
    margin: 2.5rem 0;
}

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

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

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

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

.providers-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    white-space: nowrap;
}

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

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

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

/* Tips Article */
.tips-article {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2.5rem;
}

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

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

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

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

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

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

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

.provider-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.2) 0%, rgba(var(--accent-primary-rgb), 0.1) 100%);
    border-radius: 12px;
}

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

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

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

/* Betting Types */
.betting-types {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

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

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

.bet-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.bet-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
}

.bet-name {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.bet-odds {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gold-primary);
}

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

/* Steps Article */
.steps-article {
    margin: 2.5rem 0;
}

.steps-article h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all var(--transition-normal);
}

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

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-top: 0.25rem;
}

.steps-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.1) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

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

.payment-feature svg {
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.payment-feature h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.payment-feature p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

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

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

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

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

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    text-transform: uppercase;
}

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

.promo-value {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.promo-card > p:not(.promo-value) {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.promo-cta-text a {
    color: var(--accent-primary);
    font-weight: 500;
}

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

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

/* Register Steps */
.register-steps {
    margin: 2.5rem 0;
}

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

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

.register-steps-list li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all var(--transition-normal);
}

.register-steps-list li:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

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

.step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.2) 0%, rgba(var(--accent-primary-rgb), 0.1) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.step-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-primary);
}

.step-content h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.register-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

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

.demo-cta {
    text-align: center;
    margin-top: 2rem;
}

.demo-cta .btn {
    min-width: 280px;
}

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

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

.support-channel {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.channel-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.2) 0%, rgba(var(--accent-primary-rgb), 0.1) 100%);
    border-radius: 12px;
}

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

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

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

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

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

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

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

.security-feature svg {
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.security-feature h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.security-feature p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

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

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    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 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
}

.faq-item dd {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.final-cta-section .section-container {
    position: relative;
    z-index: 1;
}

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

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

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

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

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

    .hero-feature span {
        font-size: 0.875rem;
    }

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

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

/* ==========================================================================
   RESPONSIVE - MEDIUM MOBILE (480px+)
   ========================================================================== */
@media (min-width: 480px) {
    .hero-content h1 {
        font-size: 1.875rem;
    }

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

    .hero-cta .btn {
        width: auto;
        min-width: 180px;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        padding: 1rem 1.25rem;
    }

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

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

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

    .final-cta-buttons .btn {
        width: auto;
        min-width: 200px;
    }
}

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

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

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

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

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

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

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

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

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

    .hero {
        padding: 3rem 0 4rem;
    }

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

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

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

    .hero-features {
        padding: 0 2rem;
        gap: 1.25rem;
    }

    .slots-section,
    .baccarat-section,
    .payment-section,
    .promotions-section,
    .register-section,
    .demo-section,
    .support-section,
    .security-section,
    .faq-section {
        padding: 4rem 0;
    }

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

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

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

    .tips-article {
        padding: 2rem;
    }

    .betting-types {
        padding: 2rem;
    }

    .steps-list li {
        padding: 1.25rem 1.5rem;
    }

    .promo-cards-grid {
        gap: 1.5rem;
    }

    .promo-card {
        padding: 2rem;
    }

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

    .promo-value {
        font-size: 1.5rem;
    }

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

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

    .final-cta-section h2 {
        font-size: 1.875rem;
    }
}

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

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

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

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

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

    .hero-sub-description {
        font-size: 1rem;
    }

    .hero-cta .btn {
        min-width: 220px;
    }

    .hero-features {
        padding: 0 3rem;
    }

    .slots-section,
    .baccarat-section,
    .payment-section,
    .promotions-section,
    .register-section,
    .demo-section,
    .support-section,
    .security-section,
    .faq-section {
        padding: 5rem 0;
    }

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   PROMOTIONS PAGE STYLES - Two-Column Reversed Hero Layout
   ========================================================================== */

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

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

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

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

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

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

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

.promo-hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--text-primary) 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promo-hero-sub {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

.promo-section-alt {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Promo Feature Card - Large Highlight Card */
.promo-feature-card {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    transition: all var(--transition-normal);
}

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

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

.promo-feature-gold::before {
    background: var(--gold-gradient);
}

.promo-feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.promo-feature-gold .promo-feature-badge {
    background: var(--gold-gradient);
}

.promo-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.2) 0%, rgba(var(--accent-primary-rgb), 0.1) 100%);
    border-radius: 20px;
}

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

.promo-feature-gold .promo-feature-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
}

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

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

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

.promo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.promo-feature-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.promo-feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.promo-feature-card .btn {
    max-width: 300px;
    margin: 0 auto;
}

/* Promo Steps Article */
.promo-steps-article {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

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

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

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

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

.promo-steps-list li:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

.promo-steps-list .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    flex-shrink: 0;
}

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

/* Promo Terms Box */
.promo-terms-box,
.promo-benefits-box {
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.08) 0%, rgba(var(--accent-primary-rgb), 0.03) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.promo-terms-box h4,
.promo-benefits-box h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

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

/* Promo Table */
.promo-table-wrapper {
    margin: 2rem 0;
}

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

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

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

.promo-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
}

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

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

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

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

/* VIP Info Box */
.promo-vip-info {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

    .promo-feature-value {
        font-size: 2rem;
    }
}

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

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

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

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

    .promo-steps-list li {
        flex: 1 1 calc(50% - 0.375rem);
    }
}

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

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

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

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

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

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

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

    .promo-detail-section {
        padding: 4rem 0;
    }

    .promo-feature-card {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .promo-steps-list li {
        flex: 1 1 calc(50% - 0.375rem);
    }

    .promo-terms-box,
    .promo-benefits-box {
        padding: 2rem;
    }

    .promo-vip-info {
        padding: 2.5rem 2rem;
    }

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

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

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

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

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

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

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

    .promo-feature-card {
        max-width: 700px;
    }

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

    .promo-feature-value {
        font-size: 2.25rem;
    }

    .promo-steps-list li {
        flex: 1 1 calc(25% - 0.5625rem);
    }
}

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

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

    .promo-feature-card {
        max-width: 800px;
    }
}
