/* ==========================================================================
   CAT999 - MAIN STYLESHEET
   Theme: Cyberpunk Purple/Cyan Neon
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
    /* Background Colors */
    --bg-primary: #0d0d14;
    --bg-secondary: #12121c;
    --bg-tertiary: #1a1a2e;
    --bg-hover: #242440;
    --bg-card: linear-gradient(145deg, #16162a 0%, #0d0d14 100%);

    /* Text Colors */
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;

    /* Accent Colors - Cyberpunk Purple/Cyan */
    --accent-primary: #9b5de5;
    --accent-secondary: #00f5d4;
    --accent-tertiary: #f15bb5;
    --accent-primary-rgb: 155, 93, 229;
    --accent-secondary-rgb: 0, 245, 212;
    --accent-gradient: linear-gradient(135deg, #9b5de5 0%, #00f5d4 100%);
    --accent-gradient-hover: linear-gradient(135deg, #b37cee 0%, #33f7dd 100%);
    --accent-glow: 0 0 20px rgba(155, 93, 229, 0.5), 0 0 40px rgba(0, 245, 212, 0.3);

    /* Border Colors */
    --border-primary: rgba(155, 93, 229, 0.2);
    --border-secondary: rgba(0, 245, 212, 0.3);
    --border-glow: 1px solid rgba(155, 93, 229, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(155, 93, 229, 0.3);

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

    /* Spacing */
    --container-max: 1400px;
    --section-padding: 4rem 1rem;
}

/* ==========================================================================
   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;
    overflow-x: hidden;
}

/* Background Grid Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(155, 93, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 93, 229, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

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-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(155, 93, 229, 0.4));
    transition: filter 0.3s ease;
}

.brand a:hover .header-logo {
    filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.6));
}

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

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

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

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--text-primary);
    background: rgba(155, 93, 229, 0.1);
}

.nav-menu li a:hover::after {
    width: 60%;
}

/* 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: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: var(--accent-glow);
}

.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;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(155, 93, 229, 0.1);
    border-color: var(--accent-primary);
}

.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: 24px;
    height: 2px;
    background: var(--accent-secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.mobile-cta-item .btn-cta {
    display: flex;
    justify-content: center;
    align-items: 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(--accent-glow);
}

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

    .header-logo {
        height: 45px;
    }

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

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

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

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 50px;
    }

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

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

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer[role="contentinfo"] {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 90px;
    position: relative;
}

footer[role="contentinfo"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.5;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 1rem 1.5rem;
}

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

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

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

.footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(155, 93, 229, 0.4));
}

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

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

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

.footer-social a:hover {
    background: rgba(155, 93, 229, 0.2);
    border-color: var(--accent-primary);
    color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(155, 93, 229, 0.3);
}

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

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-secondary);
    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.625rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.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.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

/* Trust Badges Section */
.footer-trust {
    padding: 2rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 2rem;
    background: linear-gradient(180deg, rgba(155, 93, 229, 0.03) 0%, transparent 100%);
}

.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);
    transition: all 0.3s ease;
}

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

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(155, 93, 229, 0.4));
}

.trust-badge:hover svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 8px rgba(0, 245, 212, 0.5));
}

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

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

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

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

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

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

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

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

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

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

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

    .trust-badges {
        gap: 3rem;
    }

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

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

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

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

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

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

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

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

/* ==========================================================================
   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 1rem;
    background: rgba(13, 13, 20, 0.98);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

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

.sticky-btn-secondary:hover {
    background: rgba(155, 93, 229, 0.15);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Primary Button (Main CTA) */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--accent-glow);
}

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: var(--accent-glow);
}

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

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

.btn-secondary:hover {
    background: rgba(155, 93, 229, 0.15);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(0, 245, 212, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

.section {
    padding: var(--section-padding);
}

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

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

.glow-text {
    text-shadow: 0 0 10px rgba(155, 93, 229, 0.5), 0 0 20px rgba(0, 245, 212, 0.3);
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(155, 93, 229, 0.2);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-hint {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(155, 93, 229, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 245, 212, 0.5);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 93, 229, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

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

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

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

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-primary);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero Responsive */
@media (min-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

@media (min-width: 768px) {
    .hero-section {
        padding: 4rem 2rem 5rem;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

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

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

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

    .hero-image-wrapper {
        flex: 1;
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 5rem 3rem 6rem;
    }

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

    .hero-description,
    .hero-subtext {
        font-size: 1.05rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-image-wrapper {
        max-width: 550px;
    }
}

/* ==========================================================================
   HOMEPAGE - FEATURES HIGHLIGHT SECTION
   ========================================================================== */
.features-highlight-section {
    padding: 3rem 1rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.feature-highlight-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: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.2) 0%, rgba(0, 245, 212, 0.1) 100%);
    border-radius: 12px;
}

.feature-icon svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 6px rgba(0, 245, 212, 0.4));
}

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

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

@media (min-width: 576px) {
    .features-highlight-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .feature-highlight-card {
        padding: 1.5rem 1rem;
    }

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

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

@media (min-width: 768px) {
    .features-highlight-section {
        padding: 3.5rem 2rem;
    }

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

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

@media (min-width: 1024px) {
    .features-highlight-section {
        padding: 4rem 3rem;
    }

    .features-highlight-grid {
        gap: 2rem;
    }

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

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

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

/* ==========================================================================
   HOMEPAGE - SECTION CONTAINER
   ========================================================================== */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

/* ==========================================================================
   HOMEPAGE - CONTENT SECTIONS (Lottery, Slots, Casino, Deposit)
   ========================================================================== */
.lottery-section,
.slot-section,
.casino-section,
.deposit-section {
    padding: 4rem 0;
}

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

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

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

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

.section-content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

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

.section-text-content {
    display: flex;
    flex-direction: column;
}

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

.section-body {
    margin-bottom: 1.5rem;
}

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

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

.section-text-content > .btn {
    align-self: flex-start;
    margin-top: 1.5rem;
}

/* Aside boxes */
.lottery-types-box,
.slot-tips-box,
.baccarat-tips-box,
.deposit-steps-box {
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.1) 0%, rgba(0, 245, 212, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-left: 4px solid var(--accent-primary);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.lottery-types-box h3,
.slot-tips-box h3,
.baccarat-tips-box h3,
.deposit-steps-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 0.75rem;
}

.lottery-types-box p,
.slot-tips-box p,
.baccarat-tips-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Deposit Steps */
.deposit-steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.deposit-steps-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    counter-increment: step-counter;
}

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

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

/* Slot Providers Table */
.slot-providers-table-wrapper {
    margin: 1.5rem 0;
}

.slot-providers-table-wrapper h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

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

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

.slot-providers-table th {
    background: var(--bg-tertiary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-secondary);
    white-space: nowrap;
}

.slot-providers-table td {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
}

.slot-providers-table tbody tr:hover td {
    background: rgba(155, 93, 229, 0.1);
}

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

/* Section Responsive */
@media (min-width: 768px) {
    .lottery-section,
    .slot-section,
    .casino-section,
    .deposit-section {
        padding: 5rem 0;
    }

    .section-content-grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .section-content-grid-reverse {
        flex-direction: row-reverse;
    }

    .section-image-wrapper {
        flex: 0 0 45%;
        max-width: 500px;
    }

    .section-text-content {
        flex: 1;
    }

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

    .section-body p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .lottery-section,
    .slot-section,
    .casino-section,
    .deposit-section {
        padding: 6rem 0;
    }

    .section-content-grid {
        gap: 4rem;
    }

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

@media (min-width: 1280px) {
    .section-header h2 {
        font-size: 2.25rem;
    }

    .section-image-wrapper {
        max-width: 550px;
    }
}

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

.register-content-box {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.register-section .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.register-body {
    margin-bottom: 1.5rem;
}

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

.register-body p:last-child {
    margin-bottom: 0;
}

.register-body a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.register-body a:hover {
    color: var(--accent-primary);
}

.register-cta {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .register-section {
        padding: 5rem 0;
    }

    .register-content-box {
        padding: 3rem 4rem;
        max-width: 900px;
        margin: 0 auto;
    }

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

    .register-body p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .register-section {
        padding: 6rem 0;
    }

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

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

.support-section .section-header {
    margin-bottom: 1.5rem;
}

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

.support-content {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

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

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

.support-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.2) 0%, rgba(0, 245, 212, 0.1) 100%);
    border-radius: 16px;
}

.support-icon svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 6px rgba(0, 245, 212, 0.4));
}

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

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

@media (min-width: 576px) {
    .support-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .support-section {
        padding: 5rem 0;
    }

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

    .support-content p {
        font-size: 1rem;
    }

    .support-feature-card {
        padding: 2rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .support-section {
        padding: 6rem 0;
    }

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

    .support-features-grid {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   HOMEPAGE - WHY US SECTION
   ========================================================================== */
.why-us-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.why-us-section .section-header {
    margin-bottom: 1.5rem;
}

.why-us-section .section-header h2 {
    font-size: 1.5rem;
}

.why-us-content {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.why-us-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.why-us-features {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.why-us-list li:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

.why-us-list li svg {
    flex-shrink: 0;
    color: var(--accent-secondary);
    margin-top: 2px;
}

.why-us-list li span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-us-cta p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .why-us-section {
        padding: 5rem 0;
    }

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

    .why-us-content p {
        font-size: 1rem;
    }

    .why-us-list li {
        padding: 1.25rem 1.5rem;
    }

    .why-us-list li span {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .why-us-section {
        padding: 6rem 0;
    }

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

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

.faq-section .section-header {
    margin-bottom: 2rem;
}

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

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

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

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

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(155, 93, 229, 0.15);
}

.faq-item dt {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-primary);
    position: relative;
}

.faq-item dt::before {
    content: 'Q';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

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

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

@media (min-width: 768px) {
    .faq-section {
        padding: 5rem 0 6rem;
    }

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

    .faq-item dt {
        font-size: 1.05rem;
        padding: 1.5rem 1.5rem 1.5rem 4rem;
    }

    .faq-item dt::before {
        display: flex;
    }

    .faq-item dd {
        padding: 1.5rem 1.5rem 1.5rem 4rem;
    }

    .faq-item dd p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 6rem 0 7rem;
    }

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

    .faq-item {
        margin-bottom: 1.25rem;
    }
}

/* ==========================================================================
   HOMEPAGE - TEXT UTILITIES
   ========================================================================== */
.text-center {
    text-align: center;
}

.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 STYLES
   ========================================================================== */

/* ==========================================================================
   PROMOTIONS - HERO SECTION (Pattern 3: Centered Full-Width)
   ========================================================================== */
.promo-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: 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, 20, 0.85) 0%,
        rgba(13, 13, 20, 0.95) 50%,
        rgba(13, 13, 20, 0.98) 100%
    );
    z-index: 2;
}

.promo-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0 5rem;
    text-align: center;
}

.promo-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.promo-hero-subtext {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

/* Promo Hero Responsive */
@media (min-width: 480px) {
    .promo-hero-cta {
        flex-direction: row;
    }

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   PROMOTIONS - CONTENT SECTIONS
   ========================================================================== */
.promo-section {
    padding: 4rem 0;
}

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

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

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

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

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

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

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

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

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

/* Promo Content Grid */
.promo-content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-content-grid-reverse {
    flex-direction: column;
}

.promo-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border-primary);
}

.promo-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promo-text-content {
    display: flex;
    flex-direction: column;
}

/* Promo Badge Tags */
.promo-badge-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.375rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bg-primary);
    background: var(--accent-gradient);
    border-radius: 50px;
    margin-bottom: 1rem;
}

.promo-badge-hot {
    background: linear-gradient(135deg, #f15bb5 0%, #ff6b6b 100%);
}

.promo-badge-weekly {
    background: linear-gradient(135deg, #00f5d4 0%, #00bbf9 100%);
}

.promo-badge-lifetime {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

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

.promo-body {
    margin-bottom: 1.5rem;
}

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

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

.promo-text-content > .btn {
    align-self: flex-start;
    margin-top: 1.5rem;
}

/* Promo Steps Box */
.promo-steps-box,
.promo-conditions-box {
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.1) 0%, rgba(0, 245, 212, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-left: 4px solid var(--accent-primary);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.promo-steps-box h3,
.promo-conditions-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 0.75rem;
}

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

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

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

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

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

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

/* Promo Conditions List */
.promo-conditions-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.promo-conditions-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.625rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.promo-conditions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
}

/* Promo Value Card */
.promo-value-card {
    background: var(--bg-card);
    border: 2px solid var(--border-secondary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.promo-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.2) 0%, rgba(0, 245, 212, 0.1) 100%);
    border-radius: 20px;
}

.promo-value-icon svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 8px rgba(0, 245, 212, 0.5));
}

.promo-value-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

.promo-value-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.promo-value-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-primary);
}

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

.promo-value-features li svg {
    flex-shrink: 0;
    color: var(--accent-secondary);
}

/* Promo Content Responsive */
@media (min-width: 768px) {
    .promo-section {
        padding: 5rem 0;
    }

    .promo-content-grid {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .promo-content-grid-reverse {
        flex-direction: row-reverse;
    }

    .promo-image-wrapper {
        flex: 0 0 45%;
        max-width: 500px;
    }

    .promo-text-content {
        flex: 1;
    }

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

    .promo-body p {
        font-size: 1rem;
    }

    .promo-value-card {
        flex: 0 0 320px;
    }
}

@media (min-width: 1024px) {
    .promo-section {
        padding: 6rem 0;
    }

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

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

@media (min-width: 1280px) {
    .promo-header h2 {
        font-size: 2.25rem;
    }

    .promo-image-wrapper {
        max-width: 550px;
    }
}

/* ==========================================================================
   PROMOTIONS - COMPARISON TABLE
   ========================================================================== */
.promo-table-wrapper {
    max-width: 900px;
    margin: 2rem auto 0;
}

.promo-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

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

.promo-comparison-table th {
    background: var(--bg-tertiary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-secondary);
    white-space: nowrap;
}

.promo-comparison-table td {
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
}

.promo-comparison-table td.highlight {
    color: var(--accent-secondary);
    font-weight: 600;
}

.promo-comparison-table tbody tr:hover td {
    background: rgba(155, 93, 229, 0.1);
}

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

/* ==========================================================================
   PROMOTIONS - DAILY BONUS CARDS
   ========================================================================== */
.promo-content-box {
    max-width: 1000px;
    margin: 0 auto;
}

.promo-daily-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

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

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

.promo-daily-popular {
    border-color: var(--accent-secondary);
    border-width: 2px;
}

.daily-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 50px;
}

.daily-card-header {
    margin-bottom: 1rem;
}

.daily-percent {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.daily-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.daily-max {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.daily-turn {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.promo-cta {
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .promo-daily-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .promo-daily-card {
        padding: 2rem;
    }

    .daily-percent {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
   PROMOTIONS - LOTTERY RATES
   ========================================================================== */
.promo-lottery-info {
    flex: 1;
}

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

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

.lottery-rate-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lottery-rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: rgba(155, 93, 229, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lottery-rate-item:hover {
    background: rgba(155, 93, 229, 0.2);
}

.lottery-type {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.lottery-payout {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

@media (min-width: 768px) {
    .promo-lottery-section .promo-content-grid {
        gap: 3rem;
    }

    .promo-lottery-rates {
        flex: 0 0 350px;
        padding: 2rem;
    }
}

/* ==========================================================================
   PROMOTIONS - FINAL CTA
   ========================================================================== */
.promo-final-cta-box {
    background: var(--bg-card);
    border: 2px solid var(--border-secondary);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

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

.promo-cta-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

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

.promo-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
}

@media (min-width: 480px) {
    .promo-cta-buttons {
        flex-direction: row;
    }

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

@media (min-width: 768px) {
    .promo-final-cta-box {
        padding: 3.5rem 3rem;
    }

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

@media (min-width: 1024px) {
    .promo-cta-header h2 {
        font-size: 2rem;
    }
}
