/* ==========================================================================
   460Bet - Main Stylesheet
   Unique Design: Warm Orange & Gold Theme with Ember Glow Effects
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Background Colors - Dark theme */
    --bg-primary: #0d0d0f;
    --bg-secondary: #141417;
    --bg-tertiary: #1c1c21;
    --bg-hover: #252529;

    /* Accent Colors - Orange & Gold */
    --accent-primary: #f97316;
    --accent-primary-rgb: 249, 115, 22;
    --accent-secondary: #fbbf24;
    --accent-tertiary: #ea580c;
    --accent-gradient: linear-gradient(135deg, #f97316 0%, #fbbf24 50%, #ea580c 100%);
    --accent-gradient-hover: linear-gradient(135deg, #fb923c 0%, #fcd34d 50%, #f97316 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Border Colors */
    --border-primary: rgba(249, 115, 22, 0.15);
    --border-secondary: rgba(251, 191, 36, 0.25);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 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;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Skip Link for Accessibility */
.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;
}

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

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

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

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

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

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

/* Navigation Menu */
nav[role="navigation"] {
    display: flex;
    align-items: center;
}

.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-size: 0.9375rem;
    font-weight: 500;
    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(--accent-primary);
    background: rgba(249, 115, 22, 0.08);
}

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

.header-cta .btn-cta,
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 2px 12px rgba(var(--accent-primary-rgb), 0.35);
}

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

/* 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;
    border-radius: 8px;
    transition: background 0.2s;
}

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

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

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

/* Hamburger Animation - Open State */
.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: 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;
    animation: slideInRight 0.3s ease;
    border-left: 1px solid var(--border-primary);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

@keyframes slideInRight {
    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: flex;
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
}

/* Tablet and Desktop - 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;
        box-shadow: none;
    }

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 46px;
    }

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

    .header-cta .btn-cta {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }
}

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

    .header-logo {
        height: 50px;
    }

    .nav-menu {
        gap: 0.5rem;
    }

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

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

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

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

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

.footer-logo-link {
    display: inline-block;
    transition: transform 0.2s;
}

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

.footer-logo {
    height: 45px;
    width: auto;
    margin: 0 auto 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: 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: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

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

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

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

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-primary);
    transition: transform 0.2s, border-color 0.2s;
}

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

.trust-badge svg {
    color: var(--accent-primary);
    width: 28px;
    height: 28px;
}

.trust-badge span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    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.8125rem;
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

    .trust-badges {
        gap: 2rem;
    }

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

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

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

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

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

    .footer-logo {
        margin: 0 0 1.25rem 0;
    }

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

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

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

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

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0.75rem;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.98) 0%, rgba(20, 20, 23, 0.99) 100%);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.375rem;
    border-radius: 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, filter 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-primary);
    transform: translateY(-2px);
}

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

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(var(--accent-primary-rgb), 0.55);
    filter: brightness(1.1);
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
    .sticky-bottom-bar {
        padding: 0.5rem 0.375rem;
        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.25rem;
        gap: 0.625rem;
    }

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

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

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

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

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

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.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;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 2px 12px rgba(var(--accent-primary-rgb), 0.35);
}

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

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

.btn-full {
    width: 100%;
}

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

/* ==========================================================================
   MAIN CONTENT - HOMEPAGE 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-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

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

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

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

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

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

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

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

.hero-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

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

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

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

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

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

.hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(var(--accent-primary-rgb), 0.2);
}

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

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

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

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

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

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

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 32px rgba(var(--accent-primary-rgb), 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    border-radius: 16px;
    color: var(--accent-primary);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

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

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

/* ==========================================================================
   ACCESS SECTION
   ========================================================================== */
.access-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.access-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.access-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

.slots-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

/* Game Providers */
.game-providers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.provider-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.provider-badge:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ==========================================================================
   CASINO SECTION
   ========================================================================== */
.casino-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.casino-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

/* Casino Table */
.casino-table-wrapper {
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
}

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

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

.casino-table th {
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    white-space: nowrap;
}

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

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

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

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

.sports-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

/* Sports Leagues */
.sports-leagues {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.league-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.1) 0%, transparent 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.league-badge:hover {
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.2) 0%, transparent 100%);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   DEPOSIT SECTION
   ========================================================================== */
.deposit-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.deposit-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.payment-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    min-width: 140px;
    transition: all 0.2s ease;
}

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

.payment-badge svg {
    color: var(--accent-primary);
}

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

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

.promotions-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

.promotions-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

.promo-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(var(--accent-primary-rgb), 0.2);
}

.promo-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gradient);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

.promo-card p:last-child {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.security-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

/* Security Badges */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

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

.security-badge:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.security-badge svg {
    color: var(--accent-primary);
}

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

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

.support-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

/* Support Channels */
.support-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.support-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

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

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

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

.support-channel p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   REGISTER CTA SECTION
   ========================================================================== */
.register-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.1) 0%, var(--bg-secondary) 50%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

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

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

.register-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.register-cta {
    text-align: center;
}

.register-cta .btn {
    box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.4);
}

.register-cta .btn:hover {
    box-shadow: 0 8px 32px rgba(var(--accent-primary-rgb), 0.6);
}

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

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

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

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

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-primary);
}

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

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

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

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.625rem;
    }
}

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

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

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

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

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

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

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

    .section-title {
        font-size: 1.75rem;
    }

    .features-section,
    .access-section,
    .slots-section,
    .casino-section,
    .sports-section,
    .deposit-section,
    .promotions-section,
    .security-section,
    .support-section,
    .register-section,
    .faq-section {
        padding: 4rem 0;
    }
}

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

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

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

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

    .section-title {
        font-size: 2rem;
    }

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

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

    .casino-table-wrapper {
        margin: 0;
        padding: 0;
    }
}

/* Large Tablet / Small Desktop (992px+) */
@media (min-width: 992px) {
    .hero-section .section-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }

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

    .hero-image {
        order: 2;
    }
}

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

    .hero-section {
        padding: 5rem 0 6rem;
    }

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

    .section-title {
        font-size: 2.25rem;
    }

    .features-section,
    .access-section,
    .slots-section,
    .casino-section,
    .sports-section,
    .deposit-section,
    .promotions-section,
    .security-section,
    .support-section,
    .register-section,
    .faq-section {
        padding: 5rem 0;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 72px;
        height: 72px;
    }

    .feature-icon svg {
        width: 36px;
        height: 36px;
    }
}

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

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

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

    .section-title {
        font-size: 2.5rem;
    }

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

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .hero-section {
        padding: 6rem 0 7rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-section,
    .access-section,
    .slots-section,
    .casino-section,
    .sports-section,
    .deposit-section,
    .promotions-section,
    .security-section,
    .support-section,
    .register-section,
    .faq-section {
        padding: 6rem 0;
    }
}

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

/* Promotions Hero Section - Pattern 3: Centered Full-Width with Background */
.promo-hero-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.85) 0%, rgba(13, 13, 15, 0.95) 100%);
    z-index: 2;
}

.promo-hero-section .section-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 1rem;
}

.promo-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.promo-hero-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.promo-hero-title span {
    background: var(--accent-gradient);
    -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: 1rem;
}

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

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

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

/* Promotions Highlights Section */
.promo-highlights-section {
    padding: 2rem 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
}

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

.promo-highlight-card {
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.1) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.highlight-icon {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.highlight-value {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

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

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

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

.promo-detail-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

.promo-detail-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.promo-detail-content a:hover {
    color: var(--accent-secondary);
}

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

.promo-steps-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    counter-increment: step-counter;
}

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

.promo-steps-list li a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Promo Featured Card */
.promo-card-featured {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 2px solid var(--border-secondary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.promo-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(var(--accent-primary-rgb), 0.25);
}

.promo-card-featured.promo-card-alt {
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.08) 0%, var(--bg-tertiary) 100%);
}

.promo-card-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent-gradient);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.promo-card-icon {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

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

.promo-card-value {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.promo-card-value span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

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

.promo-card-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

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

/* Promo Table */
.promo-table-wrapper {
    overflow-x: auto;
    margin: 0 -1rem 2rem;
    padding: 0 1rem;
}

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

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

.promo-table th {
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    white-space: nowrap;
}

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

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

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

/* Promo Steps Grid */
.promo-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.promo-step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.2s ease;
}

.promo-step-card:hover {
    border-color: var(--border-secondary);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    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: 1.25rem;
    color: var(--text-primary);
}

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

.promo-step-card h4 a {
    color: var(--accent-primary);
    text-decoration: none;
}

.promo-step-card h4 a:hover {
    text-decoration: underline;
}

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

/* VIP Benefits Grid */
.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.vip-benefit-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.vip-benefit-card:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.vip-benefit-icon {
    color: var(--accent-secondary);
    margin-bottom: 0.75rem;
}

.vip-benefit-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.vip-benefit-card p {
    font-size: 0.8125rem;
    color: var(--accent-primary);
    margin: 0;
    font-weight: 500;
}

/* Promo CTA Section */
.promo-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.1) 0%, var(--bg-secondary) 50%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    border-top: 1px solid var(--border-primary);
    text-align: center;
}

.promo-final-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

    .promo-final-cta {
        flex-direction: row;
        max-width: none;
    }

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

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

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

    .promo-highlights-section {
        padding: 2.5rem 0;
    }

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

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

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

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

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

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

    .promo-highlights-section {
        padding: 3rem 0;
    }

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

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

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

    .promo-table-wrapper {
        margin: 0 0 2rem;
        padding: 0;
    }

    .promo-step-card {
        padding: 2rem 1.5rem;
    }
}

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

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

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

    .promo-card-featured {
        max-width: 450px;
    }
}

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

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

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .promo-hero-section {
        min-height: 650px;
    }

    .promo-hero-title {
        font-size: 3rem;
    }

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

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