/* ==========================================================================
   MasureBet - Main Stylesheet
   Unique Design: Royal Blue & Cyan Lottery Theme
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Primary Colors - Royal Blue & Cyan */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1525;
    --bg-tertiary: #151d30;
    --bg-hover: #1a2540;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8b4d0;
    --text-muted: #6b7a9e;

    /* Accent Colors */
    --accent-primary: #00d4ff;
    --accent-secondary: #0077ff;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    --accent-primary-rgb: 0, 212, 255;

    /* Border Colors */
    --border-primary: rgba(0, 212, 255, 0.15);
    --border-secondary: rgba(0, 212, 255, 0.25);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

a:hover {
    color: var(--text-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-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
   ========================================================================== */

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

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

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

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

.brand a:hover .header-logo {
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 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.9375rem;
    border-radius: 6px;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

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

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-primary);
    background: rgba(0, 212, 255, 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: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.35);
}

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

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

.mobile-menu-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-primary);
    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);
}

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

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

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

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

/* Mobile Menu - Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideInRight 0.35s 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%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    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: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.mobile-cta-item .btn-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

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

    .header-logo {
        height: 48px;
    }

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

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

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

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

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

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

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

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

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

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

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

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

.footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 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 Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.875rem;
}

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

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.35);
}

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

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

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

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

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.25s 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.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

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

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

.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(0, 212, 255, 0.4));
}

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

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

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8125rem;
    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-heading::after {
        left: 0;
    }

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

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

    .trust-badges {
        gap: 3rem;
    }

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

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

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

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

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

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

/* 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(10, 14, 26, 0.95);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 50px;
    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.3s 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 15px rgba(0, 212, 255, 0.35);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

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

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

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

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

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

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .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) {
    .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;
    padding: 0.75rem 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
    color: var(--bg-primary);
}

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

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

.btn-full {
    width: 100%;
}

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

.btn svg {
    flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.8) 50%, rgba(10, 14, 26, 0.7) 100%);
}

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

.hero-card {
    background: linear-gradient(145deg, rgba(21, 29, 48, 0.95) 0%, rgba(15, 21, 37, 0.98) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

.hero-cta-group .btn {
    justify-content: center;
    gap: 0.5rem;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.highlight-item svg {
    color: var(--accent-primary);
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   LOTTERY SECTION
   ========================================================================== */

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

.lottery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.lottery-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.lottery-card-icon svg {
    color: var(--accent-primary);
}

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

.lottery-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.lottery-card p:last-of-type {
    margin-bottom: 0;
}

/* Payout Table */
.payout-table-wrapper {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.payout-table-wrapper h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

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

.payout-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
}

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

.payout-table td strong {
    color: var(--accent-primary);
}

.payout-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

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

/* Lottery Image */
.lottery-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

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

.lottery-image figcaption {
    text-align: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   SLOTS SECTION
   ========================================================================== */

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

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

.feature-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;
}

.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: 72px;
    height: 72px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    color: var(--accent-primary);
}

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

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

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

/* ==========================================================================
   BANKING SECTION
   ========================================================================== */

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

.banking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.banking-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.banking-card-header svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.banking-card-header h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: 0;
}

.banking-card > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

.banking-methods li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-primary);
}

.banking-methods li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.banking-methods li svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.banking-methods li span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.banking-methods li span strong {
    color: var(--text-primary);
}

/* Withdraw Features */
.withdraw-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-primary);
}

.withdraw-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    min-width: 80px;
}

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

.withdraw-feature .feature-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Banking Image */
.banking-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

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

.banking-image figcaption {
    text-align: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   ACCESS SECTION (Login/Register)
   ========================================================================== */

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

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

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

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

.register-steps {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.register-steps li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.register-steps li::marker {
    color: var(--accent-primary);
    font-weight: 600;
}

.access-content .btn {
    gap: 0.5rem;
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */

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

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

.promo-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.promo-cta .btn {
    gap: 0.5rem;
}

.promo-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

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

.promo-image figcaption {
    text-align: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   SUPPORT SECTION
   ========================================================================== */

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

.support-text {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.support-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;
}

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

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

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

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

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

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */

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

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.security-content h2 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

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

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
}

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

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

.security-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

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

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

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

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

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

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

.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: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

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

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

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

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

.cta-buttons .btn {
    gap: 0.5rem;
}

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

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

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

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .section-header h2 {
        font-size: 1.875rem;
    }

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

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

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

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

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

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

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

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

    .lottery-grid .lottery-card:nth-child(3) {
        grid-column: span 2;
    }
}

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

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

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

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

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

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

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

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

    .lottery-section,
    .slots-section,
    .banking-section,
    .access-section,
    .promotions-section,
    .support-section,
    .security-section,
    .faq-section,
    .cta-section {
        padding: 5rem 0;
    }

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

    .lottery-grid .lottery-card:nth-child(3) {
        grid-column: span 1;
    }

    .security-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

    .hero-highlights {
        gap: 2rem;
    }

    .highlight-item {
        font-size: 0.9375rem;
    }

    .highlight-item svg {
        width: 24px;
        height: 24px;
    }

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

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

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

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

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

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

    .lottery-section,
    .slots-section,
    .banking-section,
    .access-section,
    .promotions-section,
    .support-section,
    .security-section,
    .faq-section,
    .cta-section {
        padding: 6rem 0;
    }

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

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

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

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

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .hero-section {
        padding: 10rem 4rem 8rem;
    }
}

/* Ultra Wide (1920px+) */
@media (min-width: 1920px) {
    .section-header h2 {
        font-size: 2.75rem;
    }

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

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

/* Promotions Hero Section */
.promo-hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.promo-hero-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.promo-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.promo-hero-cta {
    margin-bottom: 2rem;
}

.promo-hero-image {
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 212, 255, 0.15);
}

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

/* Welcome Bonus Section */
.promo-welcome-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.promo-welcome-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.promo-card-featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

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

.promo-card-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

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

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

.promo-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.promo-value {
    font-size: 1rem;
    line-height: 1.8;
}

/* Steps Aside */
.promo-steps {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 1.5rem;
}

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

.promo-steps > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-primary);
}

.steps-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

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

.step-text a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.steps-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    margin: 0;
}

/* Free Credit Section */
.promo-credit-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.promo-card-wide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

.promo-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

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

.promo-card-wide p {
    max-width: 800px;
}

/* Cashback Section */
.promo-cashback-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.promo-cashback-desc {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.cashback-table-wrapper {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.cashback-table {
    width: 100%;
    border-collapse: collapse;
}

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

.cashback-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.cashback-table td strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.cashback-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

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

/* Lottery Payout Section */
.promo-lottery-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.promo-lottery-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 2rem;
    max-width: 900px;
}

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

.promo-lottery-image figcaption {
    text-align: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.promo-lottery-desc {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.lottery-payout-details {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.lottery-payout-details > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.payout-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-primary);
    text-align: center;
}

.payout-list li:last-child {
    border-bottom: none;
}

.payout-type {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.payout-rate {
    font-size: 0.9375rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.payout-example {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Deposit Bonus Section */
.promo-deposit-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.promo-deposit-desc {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

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

.deposit-promo-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;
}

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

.deposit-promo-percent {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

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

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

/* Casino Bonus Section */
.promo-casino-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.promo-casino-desc {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.casino-promos {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.casino-promo-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-primary);
}

.casino-promo-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.casino-promo-list li svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.casino-promo-list li span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Daily Login Section */
.promo-login-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.promo-login-card {
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promo-login-content h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

.promo-login-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.login-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    min-width: 100px;
}

.login-feature svg {
    color: var(--accent-primary);
}

.login-feature span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

/* Terms Section */
.promo-terms-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

/* Promotions FAQ Section */
.promo-faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Promotions CTA Section */
.promo-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, var(--bg-tertiary) 50%, rgba(0, 119, 255, 0.1) 100%);
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
}

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

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

    .deposit-promo-percent {
        font-size: 2.25rem;
    }
}

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

    .promo-card {
        padding: 2rem;
    }

    .promo-steps {
        padding: 2rem;
    }

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

    .payout-list li {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        text-align: left;
    }

    .deposit-promos-grid {
        gap: 1.5rem;
    }
}

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

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

    .promo-welcome-content {
        grid-template-columns: 1fr 1fr;
    }

    .lottery-payout-details {
        padding: 2.5rem;
    }

    .casino-promos {
        padding: 2.5rem;
    }
}

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

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

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

    .promo-card-wide h2 {
        font-size: 1.375rem;
    }

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

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

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

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

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

    .promo-welcome-section,
    .promo-credit-section,
    .promo-cashback-section,
    .promo-lottery-section,
    .promo-deposit-section,
    .promo-casino-section,
    .promo-login-section,
    .promo-terms-section,
    .promo-faq-section,
    .promo-cta-section {
        padding: 5rem 0;
    }

    .promo-login-card {
        grid-template-columns: 1fr auto;
        padding: 2.5rem;
        align-items: center;
    }

    .promo-login-features {
        flex-direction: column;
        gap: 1rem;
    }

    .login-feature {
        min-width: 140px;
    }
}

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

    .promo-welcome-content {
        gap: 3rem;
    }

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

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

    .promo-card-wide h2 {
        font-size: 1.5rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-hero-section {
        padding: 10rem 0 7rem;
    }

    .promo-welcome-section,
    .promo-credit-section,
    .promo-cashback-section,
    .promo-lottery-section,
    .promo-deposit-section,
    .promo-casino-section,
    .promo-login-section,
    .promo-terms-section,
    .promo-faq-section,
    .promo-cta-section {
        padding: 6rem 0;
    }

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

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

    .promo-login-content h2 {
        font-size: 1.5rem;
    }
}

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

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

    .promo-welcome-content {
        grid-template-columns: 3fr 2fr;
    }
}

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

/* Ultra Wide (1920px+) */
@media (min-width: 1920px) {
    .promo-hero-header h1 {
        font-size: 3.25rem;
    }
}
