/* ==========================================================================
   KuBet Thailand - Main Stylesheet
   Theme: Royal Blue & Gold Premium Casino
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES - Royal Blue & Gold Theme
   ========================================================================== */
:root {
    /* Primary Colors - Royal Blue */
    --accent-primary: #2563eb;
    --accent-primary-rgb: 37, 99, 235;
    --accent-secondary: #1d4ed8;
    --accent-light: #3b82f6;

    /* Gold Accent */
    --gold-primary: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --hero-gradient: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.85) 100%);

    /* Background Colors - Dark Theme */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-hover: #475569;
    --bg-card: rgba(30, 41, 59, 0.8);

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    /* Border Colors */
    --border-primary: rgba(71, 85, 105, 0.5);
    --border-secondary: rgba(100, 116, 139, 0.3);
    --border-accent: rgba(37, 99, 235, 0.5);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);
    --shadow-gold: 0 0 20px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   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-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-light);
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top 0.3s;
}

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

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

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

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

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

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

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--gold-light);
    background: rgba(245, 158, 11, 0.1);
}

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

.header-cta .btn-cta {
    padding: 0.625rem 1.5rem;
    background: var(--gold-gradient);
    color: #1a1a2e;
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 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: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

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

/* Mobile Menu - Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 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;
    animation: slideIn 0.3s ease;
    border-left: 1px solid var(--border-primary);
}

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

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

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

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

/* Tablet and Desktop - 768px+ */
@media (min-width: 768px) {
    .header-container {
        padding: 1rem 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-left: none;
    }

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

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

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

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

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

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

.footer-logo {
    height: 45px;
    width: auto;
    margin: 0 auto 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

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

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

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

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

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

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

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

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

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

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

/* 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-light);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

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

.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: color 0.2s;
}

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

.trust-badge svg {
    color: var(--gold-primary);
    transition: transform 0.2s;
}

.trust-badge:hover svg {
    transform: scale(1.1);
}

.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;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

    .footer-heading::after {
        left: 0;
        transform: none;
    }

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

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

    .trust-badges {
        gap: 3rem;
    }

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

    .disclaimer {
        margin: 0;
        text-align: right;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .footer-container {
        padding: 4.5rem 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: 0 0 1.25rem 0;
    }

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

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .footer-container {
        padding: 5rem 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 1rem;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid var(--border-accent);
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 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: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

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

/* Primary Button (Main CTA) */
.sticky-btn-primary {
    background: var(--gold-gradient);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.55);
}

/* Extra Small Mobile (< 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 / Phablet (576px+) */
@media (min-width: 576px) {
    .sticky-bottom-bar {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }

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

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

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

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.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;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #1a1a2e;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

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

/* Visually Hidden */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   MAIN CONTENT STYLES - HOMEPAGE
   ========================================================================== */

/* Section Base Styles */
.section {
    padding: 3rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   HERO SECTION - Pattern 6: Card/Floating Box Over Background
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0 3rem;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    margin: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 40%,
        rgba(37, 99, 235, 0.7) 100%
    );
}

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

.hero-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(37, 99, 235, 0.2);
    max-width: 800px;
}

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

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

.hero-sub-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-cta-group .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

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

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-secondary);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

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

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

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

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

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .hero-card {
        padding: 2.5rem 2rem;
    }

    .hero-card h1 {
        font-size: 1.75rem;
    }

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

    .highlight-item {
        font-size: 0.875rem;
    }

    .highlight-item svg {
        width: 22px;
        height: 22px;
    }
}

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

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

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

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

    .hero-card {
        padding: 3rem 2.5rem;
        border-radius: 20px;
    }

    .hero-card h1 {
        font-size: 2.125rem;
        margin-bottom: 1.5rem;
    }

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

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

    .hero-cta-group {
        gap: 1rem;
        margin-bottom: 2rem;
    }

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

    .hero-highlights {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .highlight-item {
        font-size: 0.9375rem;
    }

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

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

    .hero-card {
        padding: 3.5rem 3rem;
        max-width: 720px;
    }

    .hero-card h1 {
        font-size: 2.375rem;
    }

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

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

    .hero-highlights {
        gap: 2rem;
    }

    .highlight-item {
        font-size: 1rem;
    }
}

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

    .hero-card {
        padding: 4rem 3.5rem;
        max-width: 780px;
    }

    .hero-card h1 {
        font-size: 2.625rem;
    }
}

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

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

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

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

.slots-image {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.slots-providers-section {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
}

.slots-providers-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.slots-providers-section > p {
    font-size: 0.9375rem;
    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;
    min-width: 400px;
}

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

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

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

.providers-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.1);
}

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .slots-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

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

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

    .slots-image {
        flex: 0 0 45%;
        max-width: 45%;
        border-radius: 16px;
    }

    .slots-providers-section {
        padding: 2rem;
    }

    .slots-providers-section h3 {
        font-size: 1.375rem;
    }

    .providers-table th,
    .providers-table td {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .slots-content {
        gap: 3rem;
    }

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

    .slots-providers-section {
        padding: 2.5rem;
    }

    .slots-providers-section h3 {
        font-size: 1.5rem;
    }

    .slots-providers-section > p {
        font-size: 1rem;
    }

    .providers-table th,
    .providers-table td {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
    }
}

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

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

.casino-image {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    order: -1;
}

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

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

.casino-rooms {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.casino-rooms h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.casino-rooms p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .casino-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .casino-image {
        flex: 0 0 45%;
        max-width: 45%;
        order: 0;
        border-radius: 16px;
    }

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

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

    .casino-rooms {
        padding: 1.75rem;
    }

    .casino-rooms h3 {
        font-size: 1.25rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .casino-content {
        gap: 3rem;
    }

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

    .casino-rooms {
        padding: 2rem;
    }

    .casino-rooms h3 {
        font-size: 1.375rem;
    }

    .casino-rooms p {
        font-size: 1rem;
    }
}

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

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

.lottery-types {
    margin-top: 2rem;
}

.lottery-types h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.lottery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

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

.lottery-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.lottery-icon svg {
    color: var(--text-primary);
}

.lottery-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

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

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .lottery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .lottery-intro p {
        font-size: 1.0625rem;
    }

    .lottery-types h3 {
        font-size: 1.375rem;
    }

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

    .lottery-card {
        padding: 1.75rem;
    }

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

    .lottery-card h4 {
        font-size: 1.125rem;
    }

    .lottery-card p {
        font-size: 0.9375rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .lottery-intro p {
        font-size: 1.125rem;
    }

    .lottery-types h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .lottery-grid {
        gap: 1.5rem;
    }

    .lottery-card {
        padding: 2rem;
    }

    .lottery-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1.25rem;
    }

    .lottery-card h4 {
        font-size: 1.1875rem;
    }

    .lottery-card p {
        font-size: 1rem;
    }
}

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

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

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

.sports-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}

.sports-feature:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

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

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .sports-content p {
        font-size: 1.0625rem;
    }

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

    .sports-feature {
        padding: 1.5rem;
    }

    .sports-feature span {
        font-size: 0.9375rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .sports-content p {
        font-size: 1.125rem;
    }

    .sports-features {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .sports-feature {
        padding: 1.75rem;
    }

    .sports-feature svg {
        width: 48px;
        height: 48px;
    }

    .sports-feature span {
        font-size: 1rem;
    }
}

/* ==========================================================================
   DEPOSIT/WITHDRAW SECTION
   ========================================================================== */
.deposit-section {
    background: var(--bg-secondary);
}

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

.deposit-image {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.deposit-methods {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
}

.deposit-methods h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.deposit-methods > p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

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

.deposit-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.deposit-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .deposit-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .deposit-image {
        flex: 0 0 40%;
        max-width: 40%;
        border-radius: 16px;
    }

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

    .deposit-text-content > p {
        font-size: 1rem;
    }

    .deposit-methods {
        padding: 1.75rem;
    }

    .deposit-methods h3 {
        font-size: 1.25rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .deposit-content {
        gap: 3rem;
    }

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

    .deposit-methods {
        padding: 2rem;
    }

    .deposit-methods h3 {
        font-size: 1.375rem;
    }

    .deposit-methods > p {
        font-size: 1rem;
    }

    .deposit-steps li {
        font-size: 1rem;
        padding-left: 3rem;
    }

    .deposit-steps li::before {
        width: 2rem;
        height: 2rem;
    }
}

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

.promotions-intro p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.promotions-list h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

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

.promo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.promo-icon svg {
    color: #1a1a2e;
}

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

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

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

.promotions-cta a {
    color: var(--gold-light);
    text-decoration: underline;
}

.promotions-cta a:hover {
    color: var(--accent-light);
}

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Mobile (576px+) */
@media (min-width: 576px) {
    .promo-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promotions-intro p {
        font-size: 1.0625rem;
    }

    .promotions-list h3 {
        font-size: 1.375rem;
    }

    .promo-cards {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }

    .promo-card {
        padding: 1.5rem 1rem;
    }

    .promo-icon {
        width: 52px;
        height: 52px;
    }

    .promo-card h4 {
        font-size: 0.9375rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promotions-intro p {
        font-size: 1.125rem;
    }

    .promotions-list h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .promo-cards {
        gap: 1.5rem;
    }

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

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

    .promo-card h4 {
        font-size: 1rem;
    }

    .promo-card p {
        font-size: 0.9375rem;
    }

    .promotions-cta {
        font-size: 1rem;
    }
}

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

.register-content > p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.register-steps-section {
    margin-bottom: 2rem;
}

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

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.25s;
}

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

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

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

.step-card a {
    color: var(--gold-light);
}

.register-security {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .register-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .register-content > p {
        font-size: 1.0625rem;
    }

    .register-steps-section h3 {
        font-size: 1.375rem;
    }

    .register-steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }

    .step-number {
        margin: 0 auto;
    }

    .register-security {
        font-size: 1rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .register-content > p {
        font-size: 1.125rem;
    }

    .register-steps-section h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .register-steps-grid {
        gap: 1.5rem;
    }

    .step-card {
        padding: 2rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .step-card p {
        font-size: 1rem;
    }

    .register-security {
        font-size: 1.0625rem;
    }
}

/* ==========================================================================
   ACCESS/LOGIN SECTION
   ========================================================================== */
.access-section {
    background: var(--bg-primary);
}

.access-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
}

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

.access-content a {
    color: var(--gold-light);
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .access-content p {
        font-size: 1.0625rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .access-content p {
        font-size: 1.125rem;
    }
}

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

.download-content > p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.app-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.25s;
}

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

.feature-item svg {
    flex-shrink: 0;
    color: var(--gold-primary);
}

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

.feature-item p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item svg {
        margin: 0 auto;
    }
}

/* Large Mobile (576px+) */
@media (min-width: 576px) {
    .feature-item {
        flex-direction: row;
        text-align: left;
    }

    .feature-item svg {
        margin: 0;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .download-content > p {
        font-size: 1.0625rem;
    }

    .app-features h3 {
        font-size: 1.375rem;
    }

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

    .feature-item {
        padding: 1.5rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .download-content > p {
        font-size: 1.125rem;
    }

    .app-features h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.75rem;
    }

    .feature-item h4 {
        font-size: 1.0625rem;
    }

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

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item svg {
        margin: 0 auto;
    }
}

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

.security-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-secondary);
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.security-badge svg {
    color: var(--gold-primary);
    transition: transform 0.2s;
}

.security-badge:hover svg {
    transform: scale(1.1);
}

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .security-content p {
        font-size: 1.0625rem;
    }

    .security-badges {
        gap: 3rem;
    }

    .security-badge svg {
        width: 48px;
        height: 48px;
    }

    .security-badge span {
        font-size: 0.9375rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .security-content p {
        font-size: 1.125rem;
    }

    .security-badges {
        gap: 4rem;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }

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

    .security-badge span {
        font-size: 1rem;
    }
}

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

.support-content > p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.contact-channels h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.channel-item {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}

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

.channel-item svg {
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

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

.channel-item p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .support-content > p {
        font-size: 1.0625rem;
    }

    .contact-channels h3 {
        font-size: 1.375rem;
    }

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

    .channel-item {
        padding: 1.75rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .support-content > p {
        font-size: 1.125rem;
    }

    .contact-channels h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .channels-grid {
        gap: 1.5rem;
    }

    .channel-item {
        padding: 2rem;
    }

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

    .channel-item h4 {
        font-size: 1.0625rem;
    }

    .channel-item p {
        font-size: 0.9375rem;
    }
}

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

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.25s;
}

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

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

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .faq-item {
        padding: 1.75rem;
        margin-bottom: 1.25rem;
    }

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

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .faq-item {
        padding: 2rem;
    }

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

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

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-top: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-accent);
}

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

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

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

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

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

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 1.875rem;
    }

    .cta-content > p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        gap: 1rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }

    .cta-content > p {
        font-size: 1.1875rem;
    }

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

/* ==========================================================================
   PROMOTIONS PAGE STYLES - Pattern 4: Stacked/Vertical Hero
   ========================================================================== */

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

.promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

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

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

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

.promo-hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
}

.promo-hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(37, 99, 235, 0.15);
    border: 1px solid var(--border-accent);
}

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

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

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

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

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

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

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

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

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

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

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

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

    .promo-hero h1 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

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

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

    .promo-hero-cta {
        gap: 1rem;
    }

    .promo-hero-image {
        border-radius: 20px;
    }
}

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

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

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

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

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

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

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

/* ==========================================================================
   PROMOTIONS CONTENT SECTIONS
   ========================================================================== */
.promo-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

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

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

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

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

/* Steps Card */
.promo-steps-card {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.promo-steps-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

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

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

.promo-steps-list li {
    counter-increment: step;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

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

.promo-steps-list a {
    color: var(--gold-light);
}

.promo-steps-inline {
    margin-top: 2rem;
}

/* Two Column Content */
.promo-content-two-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* VIP Card */
.promo-vip-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.promo-vip-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

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

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

.vip-benefits-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.vip-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
}

/* Content with Image */
.promo-content-with-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-image-block {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

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

/* Promotions Table */
.promo-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-secondary);
}

.promo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    background: var(--bg-card);
}

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

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

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

.promo-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.1);
}

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

/* Referral Card */
.promo-referral-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.promo-referral-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

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

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

/* Monthly Highlights */
.promo-monthly-highlights {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

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

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

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

/* Why Card */
.promo-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
}

.promo-why-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

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

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

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

    .promo-content-block {
        gap: 2.5rem;
    }

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

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

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

    .promo-content-two-col {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .promo-content-two-col .promo-vip-card {
        flex: 0 0 45%;
        max-width: 45%;
    }

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

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

    .promo-content-with-image {
        flex-direction: row;
        align-items: flex-start;
    }

    .promo-image-block {
        flex: 0 0 45%;
        max-width: 45%;
        border-radius: 16px;
    }

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

    .promo-text-block p {
        font-size: 1rem;
    }

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

    .promo-table th,
    .promo-table td {
        padding: 1.125rem 1.25rem;
        font-size: 0.9375rem;
    }

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

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

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

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

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

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

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

    .promo-content-block {
        gap: 3rem;
    }

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

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

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

    .promo-steps-card > p {
        font-size: 1rem;
    }

    .promo-steps-list li {
        font-size: 1rem;
        padding-left: 3rem;
    }

    .promo-steps-list li::before {
        width: 2rem;
        height: 2rem;
    }

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

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

    .promo-vip-card > p {
        font-size: 1rem;
    }

    .vip-benefits-list li {
        font-size: 1rem;
    }

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

    .promo-table th,
    .promo-table td {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

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

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

    .promo-referral-card p {
        font-size: 1rem;
    }

    .promo-monthly-highlights {
        padding: 2.5rem;
    }

    .promo-monthly-highlights h3 {
        font-size: 1.375rem;
    }

    .promo-monthly-highlights p {
        font-size: 1rem;
    }

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

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

    .promo-why-card p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   PROMOTIONS CTA SECTION
   ========================================================================== */
.promo-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-top: 1px solid var(--border-accent);
    border-bottom: 1px solid var(--border-accent);
}

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

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

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

.promo-cta-content > p a {
    color: var(--gold-light);
}

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

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

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .promo-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

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

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

    .promo-cta-content > p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .promo-cta-buttons {
        gap: 1rem;
    }
}

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

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

    .promo-cta-content > p {
        font-size: 1.1875rem;
    }
}

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

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

.promo-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.25s;
}

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

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

.promo-faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

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

    .promo-faq-item {
        padding: 1.75rem;
        margin-bottom: 1.25rem;
    }

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

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

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

    .promo-faq-item {
        padding: 2rem;
    }

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

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