/* ==========================================================================
   UFABET168 - Main Stylesheet
   Unique Design: Golden Amber & Dark Theme with Sports Betting Aesthetic
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (UNIQUE COLOR SCHEME)
   ========================================================================== */

:root {
    /* Primary Colors - Golden Amber Theme */
    --accent-primary: #f5a623;
    --accent-primary-rgb: 245, 166, 35;
    --accent-secondary: #e8930c;
    --accent-tertiary: #ffc107;
    --accent-gradient: linear-gradient(135deg, #f5a623 0%, #e8930c 50%, #d4820a 100%);
    --accent-gradient-hover: linear-gradient(135deg, #ffc107 0%, #f5a623 50%, #e8930c 100%);

    /* Background Colors - Deep Dark Theme */
    --bg-primary: #0d0d0d;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-hover: #252525;
    --bg-card: #1e1e1e;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #6b6b6b;
    --text-accent: #f5a623;

    /* Border Colors */
    --border-primary: rgba(245, 166, 35, 0.15);
    --border-secondary: rgba(245, 166, 35, 0.25);
    --border-highlight: rgba(245, 166, 35, 0.5);

    /* 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(245, 166, 35, 0.3);

    /* Typography */
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Sarabun', sans-serif;

    /* Spacing */
    --header-height: 70px;
    --container-max: 1400px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    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: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

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

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

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

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

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

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

header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(13, 13, 13, 0.98) 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: var(--container-max);
    margin: 0 auto;
    padding: 0.875rem 1rem;
    min-height: var(--header-height);
}

/* Logo & Brand */
.brand a {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.brand a:hover {
    opacity: 0.9;
}

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

/* Navigation */
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.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-primary);
    background: rgba(245, 166, 35, 0.08);
}

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.35);
    transition: all 0.25s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.nav-menu.active li a {
    padding: 1rem;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--border-primary);
    border-radius: 0;
}

.nav-menu.active li:last-child a {
    border-bottom: none;
}

/* Mobile CTA in Menu */
.mobile-cta-item {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-secondary) !important;
}

.mobile-cta-item .btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   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: var(--container-max);
    margin: 0 auto;
    padding: 3.5rem 1rem 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-contact a:hover {
    text-decoration: underline;
}

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

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    padding: 0.75rem;
}

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(var(--accent-primary-rgb), 0.3));
}

.trust-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

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

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

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

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.375rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.25s ease;
}

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

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

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

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

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

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

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

    .header-logo {
        height: 36px;
    }
}

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

    .header-logo {
        height: 38px;
    }
}

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

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

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

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

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

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

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

    .header-logo {
        height: 46px;
    }

    .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;
        border: none;
        animation: none;
    }

    .nav-menu li a {
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
        border-bottom: none;
    }

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

    .header-cta {
        display: block;
        margin-left: 1rem;
    }

    .sticky-bottom-bar {
        padding: 1rem 2rem;
        gap: 1rem;
    }

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

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

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

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

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

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

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

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

    .header-logo {
        height: 50px;
    }

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

    .sticky-bottom-bar {
        justify-content: center;
        padding: 1rem 3rem;
    }

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

    .footer-container {
        padding: 4.5rem 3rem 2rem;
    }

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

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

    .footer-container {
        padding: 5rem 4rem 2.5rem;
    }

    .trust-badges {
        gap: 3.5rem;
    }
}

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    :root {
        --container-max: 1500px;
    }
}

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

/* Section Container */
.section-container {
    max-width: var(--container-max);
    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: 1rem;
    line-height: 1.4;
}

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

/* ==========================================================================
   HERO SECTION - Pattern 6: Card Over Background
   ========================================================================== */

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.95) 0%,
        rgba(13, 13, 13, 0.85) 40%,
        rgba(13, 13, 13, 0.75) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
}

.hero-card {
    background: linear-gradient(
        145deg,
        rgba(30, 30, 30, 0.95) 0%,
        rgba(20, 20, 20, 0.98) 100%
    );
    border: 1px solid var(--border-secondary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(var(--accent-primary-rgb), 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.hero-title::first-line {
    color: var(--accent-primary);
}

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

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

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

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

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(var(--accent-primary-rgb), 0.1);
    border: 1px solid var(--border-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--accent-primary-rgb), 0.5);
    color: var(--bg-primary);
}

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

.btn-secondary:hover {
    background: rgba(var(--accent-primary-rgb), 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

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

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.platform-section,
.access-section,
.slots-section,
.casino-section,
.sports-section,
.payment-section,
.promotions-section,
.support-section {
    padding: 4rem 0;
}

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

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

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

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

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

.payment-section {
    background: var(--bg-primary);
}

.promotions-section {
    background: linear-gradient(
        135deg,
        rgba(var(--accent-primary-rgb), 0.08) 0%,
        var(--bg-secondary) 50%,
        rgba(var(--accent-primary-rgb), 0.05) 100%
    );
}

.support-section {
    background: var(--bg-primary);
}

/* Content Block */
.content-block {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

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

.content-block strong {
    color: var(--text-primary);
    font-weight: 600;
}

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

.content-block u {
    text-decoration: none;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 1px;
}

.content-block a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.content-block a:hover {
    color: var(--accent-tertiary);
    text-decoration: underline;
}

/* Section Images */
.section-image {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

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

/* ==========================================================================
   HIGHLIGHT BOX
   ========================================================================== */

.highlight-box,
.steps-box,
.tips-box,
.baccarat-box,
.cta-box {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(
        145deg,
        rgba(30, 30, 30, 0.8) 0%,
        rgba(20, 20, 20, 0.9) 100%
    );
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    border-left: 4px solid var(--accent-primary);
}

.highlight-box h3,
.steps-box h3,
.tips-box h3,
.baccarat-box h3,
.cta-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.highlight-box p,
.steps-box p,
.tips-box p,
.baccarat-box p,
.cta-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.highlight-box p:last-child,
.steps-box p:last-child,
.tips-box p:last-child,
.baccarat-box p:last-child {
    margin-bottom: 0;
}

.highlight-box strong,
.steps-box strong,
.tips-box strong,
.baccarat-box strong,
.cta-box strong {
    color: var(--text-primary);
}

.highlight-box em,
.steps-box em,
.tips-box em,
.baccarat-box em,
.cta-box em {
    color: var(--accent-primary);
    font-style: normal;
}

.highlight-box u,
.steps-box u,
.tips-box u,
.baccarat-box u,
.cta-box u {
    text-decoration: none;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 1px;
}

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

.steps-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 0.75rem;
    background: rgba(var(--accent-primary-rgb), 0.05);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    counter-increment: step;
}

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

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

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

/* ==========================================================================
   GAME PROVIDERS TABLE
   ========================================================================== */

.game-providers {
    max-width: 900px;
    margin: 2rem auto 0;
}

.game-providers h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

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

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

.providers-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    background: var(--bg-card);
}

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

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

.providers-table th {
    background: rgba(var(--accent-primary-rgb), 0.1);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.providers-table tbody tr:hover {
    background: rgba(var(--accent-primary-rgb), 0.05);
}

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

/* ==========================================================================
   BETTING TYPES
   ========================================================================== */

.betting-types,
.payment-methods {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
}

.betting-types h3,
.payment-methods h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.betting-types > p,
.payment-methods > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.betting-types strong,
.payment-methods strong {
    color: var(--text-primary);
}

.betting-list,
.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.betting-list li,
.payment-list li {
    position: relative;
    padding: 1rem 1rem 1rem 2.5rem;
    margin-bottom: 0.5rem;
    background: rgba(var(--accent-primary-rgb), 0.05);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.betting-list li::before,
.payment-list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 1.35rem;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.betting-list li:last-child,
.payment-list li:last-child {
    margin-bottom: 0;
}

.betting-list li strong,
.payment-list li strong {
    color: var(--text-primary);
}

/* ==========================================================================
   CTA BOX
   ========================================================================== */

.cta-box {
    text-align: center;
    border-left: none;
    border: 2px solid var(--border-secondary);
    background: linear-gradient(
        145deg,
        rgba(var(--accent-primary-rgb), 0.08) 0%,
        rgba(20, 20, 20, 0.95) 100%
    );
}

.cta-box a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.cta-box a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

.faq-item dt {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(var(--accent-primary-rgb), 0.05);
    border-bottom: 1px solid var(--border-primary);
}

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

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

.faq-item dd strong {
    color: var(--text-primary);
}

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

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

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

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .highlight-box,
    .steps-box,
    .tips-box,
    .baccarat-box,
    .cta-box,
    .betting-types,
    .payment-methods {
        padding: 2.5rem;
    }
}

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .hero-badges {
        gap: 1.25rem;
    }

    .hero-badge {
        font-size: 0.875rem;
    }
}

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

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

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

    .hero-card {
        padding: 3.5rem;
    }

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

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

    .platform-section,
    .access-section,
    .slots-section,
    .casino-section,
    .sports-section,
    .payment-section,
    .promotions-section,
    .support-section {
        padding: 5rem 0;
    }

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

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

    .section-image {
        border-radius: 20px;
    }

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

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

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

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

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

    .hero-card {
        padding: 4rem;
    }

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

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

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

    .platform-section,
    .access-section,
    .slots-section,
    .casino-section,
    .sports-section,
    .payment-section,
    .promotions-section,
    .support-section {
        padding: 6rem 0;
    }

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

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

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

    .content-block {
        margin-bottom: 3rem;
    }

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

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

    .hero {
        padding: 10rem 4rem 8rem;
    }

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

    .hero-card {
        padding: 4.5rem;
    }

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

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

    .highlight-box h3,
    .steps-box h3,
    .tips-box h3,
    .baccarat-box h3,
    .cta-box h3,
    .betting-types h3,
    .payment-methods h3,
    .game-providers h3 {
        font-size: 1.375rem;
    }
}

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

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

/* Ultra Wide (1920px+) */
@media (min-width: 1920px) {
    .hero-container {
        max-width: 1100px;
    }

    .content-block,
    .highlight-box,
    .steps-box,
    .tips-box,
    .baccarat-box,
    .cta-box,
    .betting-types,
    .payment-methods,
    .game-providers,
    .faq-list {
        max-width: 1000px;
    }
}

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

/* Promotions Hero Section */
.promo-hero {
    position: relative;
    padding: 6rem 1rem 3rem;
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 100%
    );
    text-align: center;
    overflow: hidden;
}

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

.promo-hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.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::first-line {
    color: var(--accent-primary);
}

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

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

.promo-hero-description em {
    color: var(--accent-primary);
    font-style: normal;
}

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

.promo-hero-sub em {
    color: var(--accent-primary);
    font-style: normal;
}

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

.promo-hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

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

/* Promotions Page Sections */
.promo-welcome-section,
.promo-free-credit-section,
.promo-cashback-section,
.promo-daily-section,
.promo-referral-section,
.promo-auto-section,
.promo-cta-section {
    padding: 4rem 0;
}

.promo-welcome-section {
    background: var(--bg-primary);
}

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

.promo-cashback-section {
    background: var(--bg-primary);
}

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

.promo-referral-section {
    background: var(--bg-primary);
}

.promo-auto-section {
    background: linear-gradient(
        135deg,
        rgba(var(--accent-primary-rgb), 0.05) 0%,
        var(--bg-secondary) 50%,
        rgba(var(--accent-primary-rgb), 0.03) 100%
    );
}

.promo-cta-section {
    background: var(--bg-primary);
    padding: 5rem 0;
}

/* Promo Conditions Box */
.promo-conditions-box {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(
        145deg,
        rgba(var(--accent-primary-rgb), 0.08) 0%,
        rgba(30, 30, 30, 0.9) 100%
    );
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    border-left: 4px solid var(--accent-primary);
}

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

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

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

.promo-conditions-box u {
    text-decoration: none;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 1px;
}

/* Promo Steps Box */
.promo-steps-box {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
}

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

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

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

.promo-steps-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 0.75rem;
    background: rgba(var(--accent-primary-rgb), 0.05);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    counter-increment: promo-step;
}

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

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

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

.promo-steps-list li a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.promo-steps-list li a:hover {
    text-decoration: underline;
}

/* Promo Highlight Box */
.promo-highlight-box {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(
        145deg,
        rgba(30, 30, 30, 0.8) 0%,
        rgba(20, 20, 20, 0.9) 100%
    );
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    border-left: 4px solid var(--accent-primary);
}

.promo-highlight-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

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

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

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

.promo-highlight-box em {
    color: var(--accent-primary);
    font-style: normal;
}

/* Promo Summary Table */
.promo-table-wrapper {
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.promo-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    background: var(--bg-card);
}

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

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

.promo-summary-table th {
    background: rgba(var(--accent-primary-rgb), 0.12);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.promo-summary-table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

.promo-summary-table tbody tr:hover {
    background: rgba(var(--accent-primary-rgb), 0.05);
}

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

/* Final CTA Box */
.promo-final-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(
        145deg,
        rgba(var(--accent-primary-rgb), 0.1) 0%,
        rgba(30, 30, 30, 0.95) 100%
    );
    border: 2px solid var(--border-secondary);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(var(--accent-primary-rgb), 0.1);
}

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

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

.promo-final-cta p a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.promo-final-cta p a:hover {
    text-decoration: underline;
}

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

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

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

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

    .promo-conditions-box,
    .promo-steps-box,
    .promo-highlight-box {
        padding: 2rem;
    }
}

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

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

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

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

    .promo-conditions-box h3,
    .promo-steps-box h3,
    .promo-highlight-box h3 {
        font-size: 1.25rem;
    }

    .promo-final-cta {
        padding: 3.5rem 2.5rem;
    }

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

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

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

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

    .promo-conditions-box,
    .promo-steps-box,
    .promo-highlight-box {
        padding: 2.5rem;
    }
}

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

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

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

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

    .promo-welcome-section,
    .promo-free-credit-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-referral-section,
    .promo-auto-section {
        padding: 5rem 0;
    }

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

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

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

    .promo-final-cta p {
        font-size: 1.0625rem;
    }
}

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

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

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

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

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

    .promo-hero-image {
        max-width: 1000px;
        border-radius: 24px;
    }

    .promo-welcome-section,
    .promo-free-credit-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-referral-section,
    .promo-auto-section {
        padding: 6rem 0;
    }

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

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

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

    .promo-final-cta {
        max-width: 900px;
        padding: 4.5rem 4rem;
    }

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

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

    .promo-hero-header {
        max-width: 1100px;
    }
}

/* Ultra Wide (1920px+) */
@media (min-width: 1920px) {
    .promo-conditions-box,
    .promo-steps-box,
    .promo-highlight-box,
    .promo-table-wrapper {
        max-width: 1000px;
    }
}
