/* ==========================================================================
   UFA365 - Main Styles
   Royal Blue & Gold Theme with Premium Sports Betting Aesthetic
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Primary Colors - Royal Blue & Gold */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1528;
    --bg-tertiary: #151d35;
    --bg-hover: #1a2445;

    /* Accent Colors */
    --accent-primary: #2563eb;
    --accent-primary-rgb: 37, 99, 235;
    --accent-secondary: #f5a623;
    --accent-secondary-rgb: 245, 166, 35;
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    --accent-gold-gradient: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8b4ce;
    --text-muted: #6b7a99;

    /* Border Colors */
    --border-primary: rgba(37, 99, 235, 0.2);
    --border-secondary: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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 */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.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.95) 100%);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

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

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

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

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

.nav-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

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

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

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

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gold-gradient);
    color: #1a1a2e;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}

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

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

.mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

/* 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;
    backdrop-filter: blur(4px);
}

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

/* Mobile Menu - Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-primary);
}

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

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

.nav-menu.active li a:hover {
    background: var(--bg-tertiary);
    color: var(--accent-secondary);
}

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

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--accent-gold-gradient);
    color: #1a1a2e;
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-item .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}

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

    .header-logo {
        height: 48px;
    }

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

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

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

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

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 50px;
    }

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

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

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

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

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

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

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

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

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

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 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: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold-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.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-secondary);
    transform: translateX(3px);
}

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

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

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

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

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    padding: 0.75rem;
    border-radius: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    min-width: 100px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.trust-badge svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 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.75rem;
}

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

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

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

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

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

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

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

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

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

    .trust-badges {
        gap: 2rem;
    }

    .trust-badge {
        min-width: 110px;
    }

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

    .disclaimer {
        text-align: right;
        max-width: 400px;
        margin: 0;
    }
}

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

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

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

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

    .trust-badge {
        min-width: 120px;
        padding: 1rem;
    }
}

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

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

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

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    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.3s ease;
}

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

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Primary Button (Main CTA) */
.sticky-btn-primary {
    background: var(--accent-gold-gradient);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 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: 8px;
    }
}

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

/* 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.85rem;
        border-radius: 12px;
    }
}

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

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

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

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

/* ==========================================================================
   BUTTON 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;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

.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-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

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

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

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

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

/* ==========================================================================
   HERO SECTION - Pattern 3: Centered Full-Width
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 3rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-highlight {
    padding: 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 12px 12px 0;
    text-align: left;
}

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

.hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

/* Button Variants */
.btn-gold {
    background: var(--accent-gold-gradient);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.5);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

/* ==========================================================================
   PLATFORM OVERVIEW SECTION
   ========================================================================== */
.platform-overview {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.services-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.services-intro h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

/* Services Table */
.services-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

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

.services-table th {
    background: var(--bg-hover);
    color: var(--accent-secondary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.services-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* ==========================================================================
   MOBILE ACCESS SECTION
   ========================================================================== */
.mobile-access {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.steps-section h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.steps-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    counter-increment: step-counter;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

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

.slots-providers h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

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

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

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

.betting-types h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

.betting-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.betting-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.betting-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

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

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

.payment-security h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

.payment-security p:last-child {
    margin-bottom: 0;
}

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

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

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

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

.casino-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.casino-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.casino-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

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

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

.register-steps h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

.register-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    counter-reset: register-counter;
}

.register-list li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    counter-increment: register-counter;
}

.register-list li::before {
    content: counter(register-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.register-list a {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

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

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

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

.promotions-grid h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

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

.promo-list li {
    position: relative;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-left: 4px solid var(--accent-secondary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

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

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

.why-choose {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-primary);
    margin-bottom: 2.5rem;
}

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

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

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

.features-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--accent-secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

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

/* CTA Box */
.cta-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

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

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

.faq-item {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.faq-item dt::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--accent-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

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

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

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

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

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

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

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

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

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

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

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

    .services-table th,
    .services-table td {
        padding: 1.25rem;
    }

    .steps-section,
    .slots-providers,
    .betting-types,
    .payment-security,
    .casino-games,
    .register-steps,
    .promotions-grid,
    .why-choose {
        padding: 2.5rem;
    }
}

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .section-header h2 {
        font-size: 1.875rem;
    }

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

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

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

    .hero {
        min-height: 85vh;
        padding: 6rem 2rem 5rem;
    }

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

    .hero-description,
    .hero-highlight {
        font-size: 1.1rem;
    }

    .platform-overview,
    .mobile-access,
    .slots-section,
    .football-section,
    .payment-section,
    .casino-section,
    .registration-section,
    .benefits-section,
    .support-section,
    .faq-section {
        padding: 5rem 0;
    }

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

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

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

    .features-list li {
        margin-bottom: 0;
    }
}

/* Large Tablet / Small Desktop (992px+) */
@media (min-width: 992px) {
    .section-header h2 {
        font-size: 2.25rem;
    }

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

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

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

    .hero {
        padding: 7rem 3rem 6rem;
    }

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

    .hero-description,
    .hero-highlight {
        font-size: 1.15rem;
    }

    .platform-overview,
    .mobile-access,
    .slots-section,
    .football-section,
    .payment-section,
    .casino-section,
    .registration-section,
    .benefits-section,
    .support-section,
    .faq-section {
        padding: 6rem 0;
    }

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

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

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

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

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

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

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .section-header h2 {
        font-size: 3rem;
    }

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

/* ==========================================================================
   LINK STYLES IN CONTENT
   ========================================================================== */
main a:not(.btn) {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

main a:not(.btn):hover {
    color: var(--accent-secondary);
}

/* Strong and Emphasis */
main strong {
    color: var(--text-primary);
    font-weight: 600;
}

main em {
    color: var(--accent-secondary);
    font-style: italic;
}

main u {
    text-decoration-color: var(--accent-secondary);
}

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

/* Promotions Hero Section - Pattern 6: Card/Floating Box Over Background */
.promo-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.promo-hero-image 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(
        135deg,
        rgba(10, 14, 26, 0.95) 0%,
        rgba(10, 14, 26, 0.85) 50%,
        rgba(10, 14, 26, 0.75) 100%
    );
}

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

.promo-hero-card {
    background: linear-gradient(145deg, rgba(21, 29, 53, 0.95) 0%, rgba(15, 21, 40, 0.98) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    max-width: 800px;
}

.promo-hero-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

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

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

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

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

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

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

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

/* Promotion Cards */
.promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.promo-card-featured {
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: var(--accent-primary);
}

.promo-card-highlight {
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-color: var(--accent-secondary);
}

.promo-card-cashback {
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: #dc2626;
}

.promo-card-referral {
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: #3b82f6;
}

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

.promo-badge-gold {
    background: var(--accent-gold-gradient);
    color: #1a1a2e;
}

.promo-badge-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.promo-badge-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.promo-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.promo-card-icon svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 2px 8px rgba(245, 166, 35, 0.3));
}

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

.promo-value {
    font-size: 1rem;
    color: var(--accent-secondary);
    font-weight: 500;
}

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

.promo-steps-box h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

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

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

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

.promo-conditions-box h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

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

.promo-conditions-list li {
    position: relative;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    color: var(--text-secondary);
    line-height: 1.5;
    border-left: 3px solid var(--accent-secondary);
}

.promo-conditions-list li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: var(--accent-secondary);
    font-weight: bold;
}

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

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

.promo-info-box h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

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

/* Commission Table */
.promo-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
}

.promo-commission-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

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

.promo-commission-table th {
    background: var(--bg-hover);
    color: var(--accent-secondary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

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

.promo-commission-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.promo-commission-table td:nth-child(2) {
    color: var(--accent-secondary);
    font-weight: 600;
}

/* VIP Benefits */
.promo-vip-benefits {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-primary);
    margin-top: 2rem;
}

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

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

.promo-vip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.promo-vip-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    border-left: 3px solid var(--accent-primary);
}

.promo-vip-list li::before {
    content: '★';
    position: absolute;
    left: 1rem;
    color: var(--accent-secondary);
    font-size: 1rem;
}

/* Examples Grid */
.promo-examples-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

.promo-example-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.promo-example-icon svg {
    color: var(--accent-secondary);
}

.promo-example-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-example-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Channels */
.promo-contact-channels {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-primary);
}

.promo-contact-channels h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

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

.promo-action-links {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.promo-action-links p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Terms Box */
.promo-terms-box {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-primary);
}

.promo-terms-box h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
}

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

.promo-terms-list li {
    position: relative;
    padding: 1rem 1rem 1rem 2.5rem;
    margin-bottom: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.promo-terms-list li::before {
    content: '•';
    position: absolute;
    left: 1rem;
    color: var(--accent-primary);
    font-size: 1.5rem;
    line-height: 1;
}

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

/* CTA Box */
.promo-cta-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(245, 166, 35, 0.15) 100%);
    border-radius: 20px;
    border: 1px solid var(--border-primary);
    margin-top: 2rem;
}

.promo-cta-box > p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
}

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

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

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

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

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .promo-hero-container {
        padding: 7rem 1.5rem 5rem;
    }

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

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

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

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

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

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

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

    .promo-card {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    .promo-card-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .promo-card-badge {
        top: 1.25rem;
        right: 1.25rem;
    }

    .promo-steps-box,
    .promo-conditions-box,
    .promo-info-box,
    .promo-vip-benefits,
    .promo-contact-channels,
    .promo-terms-box {
        padding: 2.5rem;
    }
}

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .promo-hero-card h1 {
        font-size: 2rem;
    }

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

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

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

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

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

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

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

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

    .promo-card {
        padding: 2.5rem;
    }

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

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

    .promo-conditions-list li {
        margin-bottom: 0;
    }

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

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

    .promo-terms-list li {
        margin-bottom: 0;
    }
}

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

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

    .promo-hero-card {
        padding: 3.5rem;
    }

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

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

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

    .promo-card-icon {
        width: 100px;
        height: 100px;
    }

    .promo-card-icon svg {
        width: 56px;
        height: 56px;
    }

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

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

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