/* ==========================================================================
   USA567 - Main Stylesheet
   Design: American-inspired dark theme with patriotic red, white, blue + gold
   ========================================================================== */

/* CSS Custom Properties - Unique Color Scheme for USA567 */
:root {
    /* Primary Colors - Deep Navy Base */
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-tertiary: #1a2235;
    --bg-hover: #243047;

    /* Accent Colors - Patriotic Theme */
    --accent-primary: #dc2626;
    --accent-primary-rgb: 220, 38, 38;
    --accent-secondary: #3b82f6;
    --accent-gold: #fbbf24;
    --accent-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #fbbf24 100%);
    --accent-gradient-blue: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Border Colors */
    --border-primary: rgba(255, 255, 255, 0.08);
    --border-secondary: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(220, 38, 38, 0.3);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.25);
}

/* Reset & Base */
*, *::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: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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;
    font-weight: 600;
    transition: top 0.3s;
}

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

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

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

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

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

.header-logo {
    height: 38px;
    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.5rem 0.875rem;
    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(--text-primary);
    background: var(--bg-tertiary);
}

.nav-menu li a.active {
    color: var(--accent-primary);
    background: rgba(220, 38, 38, 0.1);
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: background 0.2s, border-color 0.2s;
}

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

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

.hamburger-line {
    display: block;
    width: 22px;
    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);
}

.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 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: 280px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 4.5rem 1.25rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    border-left: 1px solid var(--border-accent);
    animation: slideIn 0.3s ease-out;
}

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

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

.nav-menu.active li a:hover {
    border-color: var(--border-accent);
    background: rgba(220, 38, 38, 0.08);
}

.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: 0.875rem 1rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.3);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

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

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

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

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

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

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

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

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    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: 0 6px 20px rgba(var(--accent-primary-rgb), 0.4);
}

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

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

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

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

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

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

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

/* Footer Contact */
.footer-contact {
    font-style: normal;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-contact p {
    margin-bottom: 0.375rem;
}

.footer-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

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

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

.trust-badge svg {
    color: var(--accent-gold);
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

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

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

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

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

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

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-accent);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    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: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.25s ease;
}

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

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

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

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

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

/* Small Mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .sticky-btn {
        padding: 0.7rem 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.75rem 1.25rem;
        gap: 0.625rem;
    }

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

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

    .header-logo {
        height: 42px;
    }

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

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

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

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

    .header-cta {
        display: block;
    }

    /* Footer Tablet */
    .footer-container {
        padding: 3rem 2rem 1.5rem;
    }

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

    .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: auto;
        margin-right: auto;
    }

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

    .trust-badges {
        gap: 2.5rem;
    }

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

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

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

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

    .header-logo {
        height: 46px;
    }

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

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

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

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

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

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

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

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

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

    .header-logo {
        height: 50px;
    }

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

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

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

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

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

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

.btn-full {
    width: 100%;
}

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

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

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

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

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

.section-header p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

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

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

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

/* ==========================================================================
   HERO SECTION - Full-Width Centered Pattern
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem;
    overflow: hidden;
}

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

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

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

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

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

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

/* Hero Highlights */
.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.highlight-number {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.highlight-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

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

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 50%;
    color: var(--accent-gold);
}

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

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

/* Features Why */
.features-why {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 2rem;
}

.features-why h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.features-why p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================================================
   SLOT GAMES SECTION
   ========================================================================== */

.slot-games {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.slots-content {
    margin-bottom: 2.5rem;
}

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

.slots-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

/* Providers Table */
.providers-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

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

.providers-table caption {
    padding: 1rem;
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

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

.providers-table th {
    background: var(--bg-secondary);
    color: var(--accent-gold);
    font-weight: 600;
    white-space: nowrap;
}

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

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

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

/* Slots Tips */
.slots-tips {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
    margin-top: 2rem;
}

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

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

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

/* ==========================================================================
   DEPOSIT/WITHDRAW SECTION
   ========================================================================== */

.deposit-withdraw {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

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

.deposit-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
}

.deposit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

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

/* ==========================================================================
   LOGIN SECTION
   ========================================================================== */

.login-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.login-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-section a:not(.btn) {
    color: var(--accent-gold);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.login-section a:not(.btn):hover {
    text-decoration-color: var(--accent-gold);
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */

.promotions {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

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

.promotions-content a:not(.btn) {
    color: var(--accent-gold);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.promotions-content a:not(.btn):hover {
    text-decoration-color: var(--accent-gold);
}

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

.promo-card {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

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

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

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

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

/* ==========================================================================
   LIVE CASINO SECTION
   ========================================================================== */

.live-casino {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.live-casino h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.live-casino > .section-container > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.casino-highlight {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
}

.casino-highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

.casino-highlight p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   LOTTO SECTION
   ========================================================================== */

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

.lotto-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lotto-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SPORTS BETTING SECTION
   ========================================================================== */

.sports-betting {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.sports-betting h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

/* ==========================================================================
   REGISTRATION SECTION
   ========================================================================== */

.registration {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

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

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

.register-content a:not(.btn) {
    color: var(--accent-gold);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.register-content a:not(.btn):hover {
    text-decoration-color: var(--accent-gold);
}

/* Register Steps */
.register-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    counter-reset: step-counter;
}

.register-steps li {
    position: relative;
    padding: 1rem 1rem 1rem 3.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    counter-increment: step-counter;
    transition: border-color 0.2s, background 0.2s;
}

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

.register-steps li:hover {
    border-color: var(--border-accent);
    background: var(--bg-hover);
}

.register-steps li a {
    color: var(--accent-gold);
}

/* ==========================================================================
   MOBILE APP SECTION
   ========================================================================== */

.mobile-app {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

/* ==========================================================================
   SUPPORT SECTION
   ========================================================================== */

.support-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

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

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

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

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

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

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

.faq-item dt {
    padding: 1.25rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
}

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

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

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    text-align: center;
}

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

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

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

/* ==========================================================================
   RESPONSIVE STYLES - MAIN CONTENT
   ========================================================================== */

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

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

    .highlight-number {
        font-size: 2rem;
    }
}

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

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

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

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

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

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .hero-content {
        padding: 2.5rem;
    }

    .highlight-number {
        font-size: 2.25rem;
    }

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

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .hero {
        padding: 7rem 1.5rem 5rem;
    }

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

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

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

    .features,
    .slot-games,
    .deposit-withdraw,
    .login-section,
    .promotions,
    .live-casino,
    .lotto-section,
    .sports-betting,
    .registration,
    .mobile-app,
    .support-section,
    .faq-section {
        padding: 5rem 0;
    }

    .hero {
        padding: 8rem 2rem 6rem;
    }

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

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

    .hero-highlights {
        gap: 2rem;
    }

    .highlight-item {
        padding: 1.25rem 2rem;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

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

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

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

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

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

    .promo-card {
        padding: 2rem;
    }

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

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

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

    .hero-content {
        padding: 3rem;
    }

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

    .features-why {
        padding: 2.5rem;
    }
}

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

    .features,
    .slot-games,
    .deposit-withdraw,
    .login-section,
    .promotions,
    .live-casino,
    .lotto-section,
    .sports-betting,
    .registration,
    .mobile-app,
    .support-section,
    .faq-section {
        padding: 6rem 0;
    }

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

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

    .highlight-number {
        font-size: 2.75rem;
    }

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

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

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

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

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

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

    .hero-content {
        max-width: 1000px;
    }

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

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

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

/* ==========================================================================
   MOBILE TABLE RESPONSIVE
   ========================================================================== */

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

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

.promo-hero-content {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

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

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

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

.promo-hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* Promo Intro Section */
.promo-intro {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.promo-intro p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    padding: 0 1rem;
}

/* Promo Section Base */
.promo-section {
    padding: 4rem 0;
}

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

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

/* Promo Content Wrapper */
.promo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.promo-content-reverse {
    direction: ltr;
}

/* Promo Text Content */
.promo-text-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.promo-text-content p {
    margin-bottom: 1.25rem;
}

.promo-text-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.promo-text-content a:not(.btn) {
    color: var(--accent-gold);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.promo-text-content a:not(.btn):hover {
    text-decoration-color: var(--accent-gold);
}

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

.promo-steps li {
    position: relative;
    padding: 1rem 1rem 1rem 3.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    counter-increment: promo-step;
    transition: border-color 0.2s, background 0.2s;
}

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

.promo-steps li:hover {
    border-color: var(--border-accent);
    background: var(--bg-hover);
}

.promo-steps li a {
    color: var(--accent-gold);
}

/* Promo Highlight Box */
.promo-highlight-box {
    position: relative;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 2px solid var(--border-accent);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.highlight-value {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0.5rem 0;
}

.highlight-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.highlight-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.highlight-features li {
    position: relative;
    padding: 0.625rem 0 0.625rem 1.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-primary);
}

.highlight-features li:last-child {
    border-bottom: none;
}

.highlight-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Promo Highlight Variants */
.promo-highlight-cashback {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.promo-highlight-referral {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

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

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

.promo-table caption {
    padding: 1rem;
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

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

.promo-table th {
    background: var(--bg-secondary);
    color: var(--accent-gold);
    font-weight: 600;
    white-space: nowrap;
}

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

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

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

/* Daily Bonus Grid */
.daily-bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.daily-bonus-card {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

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

.daily-bonus-featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.daily-bonus-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.daily-bonus-day {
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

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

/* Promo Note */
.promo-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 12px 12px 0;
}

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

/* Auto Features Grid */
.auto-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.auto-feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

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

.auto-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 50%;
    color: var(--accent-gold);
}

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

.auto-feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

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

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

    .highlight-value {
        font-size: 2.25rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    .promo-content-wrapper {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .promo-content-reverse {
        direction: rtl;
    }

    .promo-content-reverse > * {
        direction: ltr;
    }

    .promo-highlight-box {
        position: sticky;
        top: 100px;
    }

    .highlight-value {
        font-size: 2.5rem;
    }

    .daily-bonus-value {
        font-size: 1.75rem;
    }

    .auto-feature-card {
        padding: 2rem;
    }

    .auto-feature-icon {
        width: 80px;
        height: 80px;
    }

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

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

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

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

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

    .highlight-value {
        font-size: 2.75rem;
    }
}

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

    .promo-hero-content {
        max-width: 1000px;
    }
}

/* Mobile Table Responsive for Promo Table */
@media (max-width: 639px) {
    .promo-table thead {
        display: none;
    }

    .promo-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-primary);
        border-radius: 12px;
        overflow: hidden;
    }

    .promo-table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-primary);
    }

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

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

    .promo-table tbody tr:hover {
        background: transparent;
    }

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

    .daily-bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MOBILE TABLE RESPONSIVE (Original)
   ========================================================================== */

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

    .providers-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-primary);
        border-radius: 12px;
        overflow: hidden;
    }

    .providers-table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-primary);
    }

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

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

    .providers-table tbody tr:hover {
        background: transparent;
    }
}
