/* ==========================================================================
   CAT888 - MAIN STYLES
   Unique Design: Golden amber cat-inspired theme with warm luxurious tones
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Background Colors */
    --bg-primary: #0d0d12;
    --bg-secondary: #141419;
    --bg-tertiary: #1c1c24;
    --bg-hover: #252530;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8c4;
    --text-muted: #6b6b7a;

    /* Accent Colors - Golden Amber Theme */
    --accent-primary: #f5a623;
    --accent-secondary: #e8920e;
    --accent-primary-rgb: 245, 166, 35;
    --accent-gradient: linear-gradient(135deg, #f5a623 0%, #e8920e 50%, #d4820a 100%);
    --accent-glow: rgba(245, 166, 35, 0.4);

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(245, 166, 35, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

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

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

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

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

/* ==========================================================================
   HEADER STYLES - Unique Cat888 Design
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(13, 13, 18, 0.98) 100%);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.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(245, 166, 35, 0.3));
}

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

.nav-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 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: 24px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

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

.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-gradient);
    color: var(--bg-primary);
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
    transition: all 0.25s ease;
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px 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: 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 cubic-bezier(0.68, -0.55, 0.27, 1.55);
    margin: 0 auto;
}

/* Hamburger Animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) 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(-7px) 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;
    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;
    border-left: 1px solid var(--border-primary);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.3s ease;
}

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

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

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

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

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

/* ==========================================================================
   FOOTER STYLES - Unique Cat888 Design
   ========================================================================== */
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 */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

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

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

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

.footer-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(245, 166, 35, 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: 12px;
    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: 0 6px 20px rgba(245, 166, 35, 0.4);
}

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

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

.footer-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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-flex;
    align-items: center;
    gap: 0.5rem;
}

.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);
    line-height: 1.8;
}

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

.footer-contact a:hover {
    opacity: 0.8;
}

/* 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: 1.5rem 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(245, 166, 35, 0.05);
    border: 1px solid transparent;
    transition: all 0.25s ease;
    min-width: 90px;
}

.trust-badge:hover {
    border-color: var(--border-primary);
    background: rgba(245, 166, 35, 0.1);
}

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.3));
}

.trust-badge span {
    font-size: 0.75rem;
    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.75rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   STICKY BOTTOM BUTTONS - Unique Cat888 Design
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(180deg, rgba(13, 13, 18, 0.98) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0.5rem;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 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);
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

/* Medium Mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .sticky-btn {
        padding: 0.8125rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .sticky-bottom-bar {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }

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

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

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

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

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

    .header-logo {
        height: 48px;
    }

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

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

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

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

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

    .header-cta {
        display: block;
    }

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

    .footer-logo {
        height: 52px;
    }

    .trust-badges {
        gap: 2rem 3rem;
    }

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

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

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

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

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

    .header-logo {
        height: 52px;
    }

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

    .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-description {
        margin-left: 0;
        margin-right: 0;
    }

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

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

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

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

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

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

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .header-container,
    .footer-container {
        max-width: 1600px;
    }
}

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

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

/* ==========================================================================
   MAIN CONTENT STYLES - Homepage
   ========================================================================== */

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

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

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

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

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

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

/* Text Link */
.text-link {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.8;
}

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

.hero-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-content strong {
    color: var(--accent-primary);
}

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

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

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

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

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

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent-primary);
}

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

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

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

.lottery-content {
    margin-bottom: 2rem;
}

.lottery-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
}

.lottery-content strong {
    color: var(--accent-primary);
}

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

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

.payout-table thead {
    background: rgba(245, 166, 35, 0.15);
}

.payout-table th {
    padding: 1rem 0.75rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-align: left;
    white-space: nowrap;
}

.payout-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-primary);
}

.payout-table td.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.payout-table tbody tr:hover {
    background: rgba(245, 166, 35, 0.05);
}

/* Lottery Subsections */
.lottery-subsections {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

.lottery-type p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.lottery-type strong {
    color: var(--accent-primary);
}

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

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

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

.slots-content strong {
    color: var(--accent-primary);
}

.slots-content em {
    font-style: italic;
    color: var(--text-primary);
}

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

/* Slot Providers */
.slot-providers {
    display: grid;
    gap: 1.5rem;
}

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

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

.provider-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.provider-card strong {
    color: var(--accent-primary);
}

.provider-card em {
    font-style: italic;
    color: var(--text-primary);
}

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

.deposit-content {
    margin-bottom: 2rem;
}

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

.deposit-content strong {
    color: var(--accent-primary);
}

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

/* Steps Grid */
.steps-grid {
    display: grid;
    gap: 1.5rem;
}

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

.step-number {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

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

.step-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.step-list {
    padding-left: 1.25rem;
    margin: 0;
}

.step-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

.step-list strong {
    color: var(--accent-primary);
}

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

.promotions-content {
    margin-bottom: 2rem;
}

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

.promotions-content strong {
    color: var(--accent-primary);
}

.promotions-content em {
    font-style: italic;
    color: var(--text-primary);
}

/* VIP Card */
.vip-card {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
    border: 1px solid var(--accent-primary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}

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

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

.vip-card strong {
    color: var(--accent-primary);
}

.vip-card em {
    font-style: italic;
    color: var(--text-primary);
}

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

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

.register-steps h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.register-list {
    padding-left: 1.25rem;
    margin: 0;
}

.register-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

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

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

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

.login-section .section-header p {
    margin-bottom: 1rem;
}

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

.security-content {
    margin-bottom: 2rem;
}

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

.security-content strong {
    color: var(--accent-primary);
}

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

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

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

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

.security-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 2px 8px rgba(245, 166, 35, 0.3));
}

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

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

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

.support-content strong {
    color: var(--accent-primary);
}

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

.summary-content {
    margin-bottom: 2rem;
}

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

.summary-content strong {
    color: var(--accent-primary);
}

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

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

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

    .feature-card {
        padding: 1.5rem;
    }

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

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

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

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

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

    .summary-cta {
        flex-direction: row;
    }
}

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

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

    .features-section,
    .lottery-section,
    .slots-section,
    .deposit-section,
    .promotions-section,
    .registration-section,
    .login-section,
    .security-section,
    .support-section,
    .summary-section,
    .faq-section {
        padding: 4rem 0;
    }

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

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

    .feature-card p {
        font-size: 0.875rem;
    }

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

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

    .security-badges {
        gap: 1.5rem;
    }

    .security-badge {
        min-width: 140px;
        padding: 1.5rem;
    }
}

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

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

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

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

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

    .section-header p {
        font-size: 1.0625rem;
    }

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

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

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

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

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

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

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

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

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

    .hero-section .section-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-image {
        margin-bottom: 0;
        order: 2;
    }

    .hero-content {
        text-align: left;
        order: 1;
    }

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

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

    .features-section,
    .lottery-section,
    .slots-section,
    .deposit-section,
    .promotions-section,
    .registration-section,
    .login-section,
    .security-section,
    .support-section,
    .summary-section,
    .faq-section {
        padding: 5rem 0;
    }

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

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

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

    .lottery-content p,
    .slots-content p,
    .deposit-content p,
    .promotions-content p,
    .security-content p,
    .support-content p,
    .summary-content p {
        font-size: 1.0625rem;
    }

    .lottery-type,
    .provider-card,
    .step-card,
    .register-steps,
    .faq-item {
        padding: 2rem;
    }

    .security-badge {
        min-width: 160px;
    }
}

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

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

    .hero-section .section-container {
        gap: 4rem;
    }

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

    .features-grid {
        gap: 2rem;
    }

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

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

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

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

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

/* Promotions Hero - Full-Screen with Overlay (Pattern 8) */
.promo-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.promo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 0 4rem;
}

.promo-hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.promo-hero-content strong {
    color: var(--accent-primary);
}

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

/* Promo Content Block */
.promo-content-block {
    margin-bottom: 2rem;
}

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

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

.promo-content-block strong {
    color: var(--accent-primary);
}

.promo-content-block em {
    font-style: italic;
    color: var(--text-primary);
}

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

/* Promo CTA Block */
.promo-cta-block {
    text-align: center;
    margin-top: 2rem;
}

/* Promo Cards */
.promo-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

.promo-card strong {
    color: var(--accent-primary);
}

.promo-card u {
    text-decoration-color: var(--accent-primary);
    text-underline-offset: 3px;
}

/* Promo Card Highlight */
.promo-card-highlight {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.12) 0%, rgba(245, 166, 35, 0.05) 100%);
    border-color: var(--accent-primary);
}

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

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

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

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

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.benefits-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Promo Card Benefits */
.promo-card-benefits {
    background: var(--bg-tertiary);
}

/* Promo Card Jackpot */
.promo-card-jackpot {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, var(--bg-tertiary) 100%);
    border-color: var(--border-secondary);
    text-align: center;
}

/* Player Types Grid */
.player-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.player-type-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.player-type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent-primary);
}

.player-type-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

/* Section Backgrounds */
.promo-welcome-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.promo-freecredit-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-cashback-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.promo-lottery-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.promo-slot-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-choose-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

/* Final CTA Section */
.promo-final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 50%, var(--bg-primary) 100%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .promo-hero-content {
        padding: 8rem 0 5rem;
    }

    .promo-welcome-section,
    .promo-freecredit-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-lottery-section,
    .promo-slot-section,
    .promo-choose-section,
    .promo-terms-section {
        padding: 4rem 0;
    }

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

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

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-hero-content h1 {
        font-size: 2.5rem;
    }

    .promo-hero-desc,
    .promo-hero-content p {
        font-size: 1.0625rem;
    }

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

    .promo-card {
        padding: 2rem;
    }

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

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

    .player-type-card {
        padding: 2rem 1.5rem;
    }

    .player-type-icon {
        width: 72px;
        height: 72px;
    }

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

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

    .promo-hero-content {
        padding: 10rem 0 6rem;
    }

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

    .promo-welcome-section,
    .promo-freecredit-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-lottery-section,
    .promo-slot-section,
    .promo-choose-section,
    .promo-terms-section {
        padding: 5rem 0;
    }

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

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

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

    .promo-hero-desc,
    .promo-hero-content p {
        font-size: 1.125rem;
    }

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

    .player-type-icon {
        width: 80px;
        height: 80px;
    }
}

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