/* ==========================================================================
   JOKER369 - MAIN STYLESHEET
   Unique design: Joker-inspired theme with red/gold accents and playful energy
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
    /* Primary Colors - Joker Red & Gold Theme */
    --bg-primary: #0d0d0f;
    --bg-secondary: #141418;
    --bg-tertiary: #1c1c22;
    --bg-hover: #252530;

    /* Accent Colors */
    --accent-primary: #e63946;
    --accent-primary-rgb: 230, 57, 70;
    --accent-secondary: #ffd700;
    --accent-gradient: linear-gradient(135deg, #e63946 0%, #ff6b6b 50%, #ffd700 100%);
    --accent-gradient-hover: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8c0;
    --text-muted: #6c6c78;

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

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* ==========================================================================
   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;
    overflow-x: hidden;
}

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 0.3s ease;
}

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

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    font-weight: 600;
}

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

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

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

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

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

.header-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* 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 0.3s ease;
    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 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--text-primary);
    background: rgba(230, 57, 70, 0.08);
}

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

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

.header-cta .btn-cta {
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.35);
}

.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: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    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%);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    border-left: 1px solid var(--border-primary);
    animation: slideInRight 0.3s ease;
}

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

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

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

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

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

    .header-logo {
        height: 48px;
    }

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

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

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

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

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

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

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

/* Footer Top Grid */
.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;
    transition: transform 0.3s ease;
}

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

.footer-logo {
    height: 48px;
    width: auto;
    margin: 0 auto 1rem;
}

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

/* 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);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 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: 1px;
}

.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 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-secondary);
    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 0.3s ease;
}

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

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

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

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

.trust-badge:hover svg {
    color: var(--accent-secondary);
    transform: scale(1.1);
}

.trust-badge svg {
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

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

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

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

    .footer-social {
        justify-content: center;
    }

    .trust-badges {
        gap: 3rem;
    }

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

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

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

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

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

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

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

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

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0.75rem;
    background: rgba(13, 13, 15, 0.98);
    border-top: 1px solid var(--border-primary);
    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.375rem;
    border-radius: 12px;
    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 0.3s ease;
}

/* 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-secondary);
    transform: translateY(-2px);
}

/* Primary Button */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.4);
}

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

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

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

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

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

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

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

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

    .sticky-btn {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
        max-width: 220px;
        border-radius: 50px;
    }
}

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

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

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

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.4);
}

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

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

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

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

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

.btn-full {
    width: 100%;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center {
    text-align: center;
}

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

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

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

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

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

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

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   HERO SECTION - Full Width Background Pattern
   ========================================================================== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

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

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

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

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

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

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

.hero-sub-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

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

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

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

@media (min-width: 576px) {
    .hero-cta {
        flex-direction: row;
    }

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

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

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

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

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

@media (min-width: 1024px) {
    .hero {
        min-height: 650px;
    }

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

    .btn-large {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }
}

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

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

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

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

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

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

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   CONTENT BLOCKS (Image + Text Sections)
   ========================================================================== */
.slot-games,
.deposit-withdraw,
.live-casino,
.access-section {
    padding: 4rem 0;
}

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

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

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

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

.content-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-block-reverse {
    flex-direction: column;
}

.content-image {
    margin: 0;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.content-image figcaption {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

.content-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

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

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

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

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

.content-text u {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-primary);
}

@media (min-width: 768px) {
    .slot-games,
    .deposit-withdraw,
    .live-casino,
    .access-section {
        padding: 5rem 0;
    }

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

@media (min-width: 1024px) {
    .content-block {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

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

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

    .content-text {
        flex: 1;
    }

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

/* ==========================================================================
   PROVIDERS TABLE
   ========================================================================== */
.providers-section,
.tips-section,
.payment-methods,
.device-support,
.baccarat-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.providers-section h3,
.tips-section h3,
.payment-methods h3,
.device-support h3,
.baccarat-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.providers-section p,
.tips-section p,
.payment-methods p,
.device-support p,
.baccarat-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.providers-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

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

.providers-table th {
    background: var(--bg-hover);
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
}

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

.providers-table tbody tr:hover {
    background: rgba(230, 57, 70, 0.05);
}

.providers-table td:first-child {
    color: var(--accent-secondary);
    font-weight: 500;
}

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

    .providers-table,
    .providers-table tbody,
    .providers-table tr,
    .providers-table td {
        display: block;
    }

    .providers-table tr {
        margin-bottom: 1rem;
        padding: 1rem;
        background: var(--bg-hover);
        border-radius: 12px;
        border: 1px solid var(--border-primary);
    }

    .providers-table td {
        padding: 0.5rem 0;
        border: none;
        display: flex;
        justify-content: space-between;
    }

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

    .providers-table td:first-child {
        font-size: 1.0625rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-primary);
        margin-bottom: 0.5rem;
    }
}

/* ==========================================================================
   PAYMENT ICONS & DEVICE ICONS
   ========================================================================== */
.payment-icons,
.device-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.payment-icon,
.device-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-hover);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
    min-width: 80px;
}

.payment-icon:hover,
.device-icon:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.payment-icon img,
.device-icon img {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.device-icon span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: center;
}

@media (min-width: 768px) {
    .payment-icons,
    .device-icons {
        gap: 1.5rem;
    }

    .payment-icon,
    .device-icon {
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }

    .payment-icon img,
    .device-icon img {
        width: 48px;
        height: 48px;
    }
}

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

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

.promo-card {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2.5rem 1.5rem 2rem;
    transition: all 0.3s ease;
}

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

.promo-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

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

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

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

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

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

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

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

    .promo-card .btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .promo-card h3 {
        font-size: 1.375rem;
    }
}

/* ==========================================================================
   REGISTRATION CTA SECTION
   ========================================================================== */
.registration-cta {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.cta-box {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.cta-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50%;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-top: 0.5rem;
}

.step p a {
    color: var(--accent-primary);
    font-weight: 500;
}

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

.cta-buttons {
    margin-top: 2rem;
}

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

    .cta-box {
        padding: 4rem 3rem;
    }

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

    .registration-steps {
        flex-direction: row;
        max-width: none;
        gap: 2rem;
    }

    .step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

@media (min-width: 1024px) {
    .cta-box h2 {
        font-size: 2.25rem;
    }
}

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

.security h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security > .container > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

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

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

.security-badge img {
    width: 48px;
    height: 48px;
    color: var(--accent-primary);
}

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

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

    .security h2 {
        font-size: 2rem;
    }

    .security-badges {
        gap: 2rem;
    }

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

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

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

.support h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support > .container > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

    .support h2 {
        font-size: 2rem;
    }
}

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

.faq .section-header {
    margin-bottom: 2rem;
}

.faq .section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

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

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

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

.faq-item dd strong {
    color: var(--accent-secondary);
}

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

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

    .faq-item {
        padding: 2rem;
    }

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

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

/* ==========================================================================
   ACCESS SECTION ADDITIONS
   ========================================================================== */
.access-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.access-section > .container > p a {
    color: var(--accent-primary);
    font-weight: 500;
}

.access-section > .container > p a:hover {
    color: var(--accent-secondary);
}

@media (min-width: 768px) {
    .access-section h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   VISUALLY HIDDEN (Accessibility)
   ========================================================================== */
.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;
}

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

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

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

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

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

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

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

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

.promo-hero-image {
    margin: 0;
}

.promo-hero-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
    border: 1px solid var(--border-primary);
}

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

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

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

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

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

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

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

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

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

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

/* Promotions Sections Common */
.promo-section {
    padding: 4rem 0;
}

.promo-section:nth-child(odd) {
    background: var(--bg-primary);
}

.promo-section:nth-child(even) {
    background: var(--bg-secondary);
}

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

/* Promotions Content Block */
.promo-content-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-content-block-reverse {
    flex-direction: column;
}

.promo-content-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

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

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

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

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

.promo-content-text u {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-primary);
}

.promo-content-image {
    margin: 0;
}

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

.promo-content-image figcaption {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

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

@media (min-width: 1024px) {
    .promo-content-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .promo-content-block-reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

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

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

.promo-steps-list li {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    counter-increment: step-counter;
}

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

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

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

@media (min-width: 1024px) {
    .promo-steps-box {
        margin-top: 0;
        flex: 0 0 400px;
    }
}

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

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

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

/* Promo Table */
.promo-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.promo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

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

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

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

.promo-table tbody tr:hover {
    background: rgba(230, 57, 70, 0.05);
}

.promo-table td:first-child {
    color: var(--accent-secondary);
    font-weight: 500;
}

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

    .promo-table,
    .promo-table tbody,
    .promo-table tr,
    .promo-table td {
        display: block;
    }

    .promo-table tr {
        margin-bottom: 1rem;
        padding: 1rem;
        background: var(--bg-hover);
        border-radius: 12px;
        border: 1px solid var(--border-primary);
    }

    .promo-table td {
        padding: 0.5rem 0;
        border: none;
        display: flex;
        justify-content: space-between;
    }

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

    .promo-table td:first-child {
        font-size: 1.0625rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-primary);
        margin-bottom: 0.5rem;
    }
}

/* Small Budget Promo Grid */
.promo-budget-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.promo-budget-card {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.promo-budget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.promo-budget-deposit,
.promo-budget-receive {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.promo-budget-deposit {
    color: var(--text-secondary);
}

.promo-budget-receive {
    color: var(--accent-secondary);
}

.promo-budget-arrow {
    color: var(--accent-primary);
}

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

.promo-budget-details li {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

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

.promo-budget-details strong {
    color: var(--text-primary);
}

.promo-note {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-top: 2rem;
    text-align: center;
}

.promo-badge-hot {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
}

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

@media (min-width: 1024px) {
    .promo-budget-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .promo-budget-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .promo-budget-arrow {
        transform: rotate(90deg);
    }
}

/* Daily Promo Grid */
.promo-daily-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.promo-daily-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.promo-daily-day {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

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

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

.promo-daily-card-weekend {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
}

.promo-daily-card-weekend .promo-daily-day {
    background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
    color: #000;
}

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

@media (min-width: 1024px) {
    .promo-daily-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* VIP Section */
.promo-vip-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(230, 57, 70, 0.05) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
}

.promo-vip-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promo-vip-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.promo-vip-benefits {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
}

.promo-vip-benefits h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

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

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

.promo-vip-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-primary);
}

.promo-vip-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.promo-vip-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-secondary);
    margin-top: 2px;
}

.promo-vip-list li span {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

@media (min-width: 768px) {
    .promo-vip-box {
        padding: 4rem 3rem;
    }

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

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

@media (min-width: 1024px) {
    .promo-vip-header h2 {
        font-size: 2.25rem;
    }
}

/* How To Use Code Section */
.promo-how-to-steps {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
}

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

.promo-how-to-steps > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.promo-how-to-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.promo-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
}

.promo-how-to-step p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.promo-how-to-step strong {
    color: var(--text-primary);
}

@media (min-width: 576px) {
    .promo-how-to-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .promo-how-to-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .promo-how-to-steps {
        padding: 2.5rem 2rem;
    }
}

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

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

.promo-cta-box {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.promo-cta-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

    .promo-cta-box {
        padding: 4rem 3rem;
    }

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

@media (min-width: 1024px) {
    .promo-cta-box h2 {
        font-size: 2.25rem;
    }
}
