/* ==========================================================================
   LOTTO888 DESIGN SYSTEM - Lottery Theme with Red & Gold
   ========================================================================== */

/* CSS Custom Properties */
:root {
    /* Brand Colors - Vibrant Red & Gold Lucky Theme */
    --accent-primary: #e53935;
    --accent-primary-rgb: 229, 57, 53;
    --accent-secondary: #ffc107;
    --accent-secondary-rgb: 255, 193, 7;
    --accent-gradient: linear-gradient(135deg, #e53935 0%, #c62828 50%, #b71c1c 100%);
    --gold-gradient: linear-gradient(135deg, #ffd54f 0%, #ffb300 50%, #ff8f00 100%);

    /* Background Colors - Deep Dark with Red Undertones */
    --bg-primary: #0d0a0f;
    --bg-secondary: #1a1520;
    --bg-tertiary: #251d2a;
    --bg-hover: #2f2538;
    --bg-card: rgba(37, 29, 42, 0.85);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8a9c4;
    --text-muted: #7c6a8a;

    /* Border Colors */
    --border-primary: rgba(229, 57, 53, 0.2);
    --border-secondary: rgba(255, 193, 7, 0.15);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(229, 57, 53, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 193, 7, 0.25);

    /* Spacing */
    --section-padding-mobile: 3rem 1rem;
    --section-padding-tablet: 4rem 2rem;
    --section-padding-desktop: 5rem 3rem;
    --container-max-width: 1280px;
}

/* ==========================================================================
   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);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

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

.skip-link:focus {
    top: 0;
    color: var(--text-primary);
}

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

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

header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 10, 15, 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 2px 8px rgba(229, 57, 53, 0.3));
}

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

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

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

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(229, 57, 53, 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;
}

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

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

.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: 280px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-secondary);
    background-image: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    border-left: 1px solid var(--border-primary);
}

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

.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.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
}

/* Responsive Header */
@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;
    }

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

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

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

main[role="main"] {
    min-height: 50vh;
}

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

/* Section Headers */
.section-header {
    margin-bottom: 2.5rem;
}

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

.section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

    .section-description {
        font-size: 1.125rem;
        max-width: 900px;
    }

    .section-header-center .section-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   HERO SECTION - Stacked/Vertical Pattern
   ========================================================================== */

.hero-section {
    padding: 2rem 1rem 3rem;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(229, 57, 53, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    border-bottom: 1px solid var(--border-primary);
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.hero-brand {
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
}

.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 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

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

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: var(--container-max-width);
    margin: 2.5rem auto 0;
    padding: 0 1rem;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.stat-value {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

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

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

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }
}

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

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

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

    .hero-description {
        font-size: 1.0625rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }
}

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

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

    .hero-brand {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
        max-width: 800px;
    }

    .hero-subtext {
        font-size: 1.0625rem;
        max-width: 750px;
    }

    .hero-image-wrapper {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }
}

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

    .hero-brand {
        font-size: 4rem;
    }

    .stat-value {
        font-size: 2.75rem;
    }
}

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

.lottery-types-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.lottery-content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.lottery-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lottery-type-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lottery-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.lottery-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.lottery-card-icon-hanoi {
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent-secondary);
}

.lottery-type-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

.lottery-image-wrapper {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-primary);
}

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

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

/* Yeekee Section */
.yeekee-section {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.yeekee-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

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

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

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

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

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

.payout-table th {
    background: var(--bg-tertiary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    white-space: nowrap;
}

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

.payout-table tbody tr:hover {
    background: rgba(229, 57, 53, 0.05);
}

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

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

/* Mobile Table Display */
@media (max-width: 639px) {
    .payout-table {
        min-width: unset;
    }

    .payout-table thead {
        display: none;
    }

    .payout-table tbody tr {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-primary);
    }

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

    .payout-table td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .payout-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
        margin-right: 1rem;
    }
}

/* Lottery Types Responsive */
@media (min-width: 768px) {
    .lottery-types-section {
        padding: var(--section-padding-tablet);
    }

    .lottery-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

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

    .yeekee-section {
        padding: 2rem;
    }

    .yeekee-section h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .lottery-types-section {
        padding: var(--section-padding-desktop);
    }

    .lottery-type-card {
        padding: 2rem;
    }

    .lottery-type-card h3 {
        font-size: 1.375rem;
    }

    .lottery-type-card p {
        font-size: 1rem;
    }

    .yeekee-section h3 {
        font-size: 1.375rem;
    }

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

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

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

.betting-types-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-primary);
}

.betting-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.betting-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.betting-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.betting-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 10px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.betting-icon-alt {
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent-secondary);
}

.betting-card h3 {
    font-size: 1.0625rem;
    margin: 0;
}

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

/* Betting Types Responsive */
@media (min-width: 640px) {
    .betting-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .betting-card-wide {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .betting-types-section {
        padding: var(--section-padding-tablet);
    }

    .betting-card {
        padding: 1.75rem;
    }

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

@media (min-width: 1024px) {
    .betting-types-section {
        padding: var(--section-padding-desktop);
    }

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

    .betting-card-wide {
        grid-column: span 1;
    }

    .betting-card {
        padding: 2rem;
    }

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

    .betting-card p {
        font-size: 1rem;
    }
}

@media (min-width: 1280px) {
    .betting-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* ==========================================================================
   DEPOSIT/WITHDRAW SECTION
   ========================================================================== */

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

.deposit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.deposit-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.deposit-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.deposit-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
}

.deposit-feature svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.deposit-feature span {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.deposit-image-wrapper {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-primary);
}

.deposit-image-wrapper img {
    width: 100%;
    height: auto;
}

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

/* Security Section */
.security-section {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
}

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

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

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

/* Deposit Section Responsive */
@media (min-width: 640px) {
    .deposit-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .deposit-section {
        padding: var(--section-padding-tablet);
    }

    .deposit-content h2 {
        font-size: 1.875rem;
    }

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

    .security-section {
        padding: 2rem;
    }

    .security-section h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .deposit-section {
        padding: var(--section-padding-desktop);
    }

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

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

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

    .deposit-feature span {
        font-size: 1rem;
    }

    .security-section h3 {
        font-size: 1.375rem;
    }

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

/* ==========================================================================
   REGISTRATION SECTION
   ========================================================================== */

.registration-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-primary);
}

.registration-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

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

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

.step-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

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

/* VIP Section */
.vip-section {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    background-image:
        linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        linear-gradient(var(--bg-card), var(--bg-card));
}

.vip-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.vip-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.vip-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    min-width: 100px;
}

.vip-badge svg {
    color: var(--accent-secondary);
}

.vip-badge span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Registration Section Responsive */
@media (min-width: 640px) {
    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .registration-section {
        padding: var(--section-padding-tablet);
    }

    .step-card {
        padding: 1.75rem;
        padding-left: 5rem;
    }

    .step-number {
        left: 1.5rem;
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }

    .step-card h4 {
        font-size: 1.125rem;
    }

    .vip-section {
        padding: 2rem;
    }

    .vip-section h3 {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .registration-section {
        padding: var(--section-padding-desktop);
    }

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

    .step-card {
        padding: 2rem 1.5rem;
        padding-top: 4rem;
        text-align: center;
    }

    .step-number {
        left: 50%;
        top: 1.5rem;
        transform: translateX(-50%);
    }

    .step-card h4 {
        font-size: 1.125rem;
    }

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

    .vip-content {
        flex-direction: row;
        gap: 2.5rem;
        align-items: center;
    }

    .vip-info {
        flex: 1;
    }

    .vip-info p {
        font-size: 1rem;
    }

    .vip-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .vip-badge {
        flex-direction: row;
        min-width: 180px;
        padding: 1rem 1.25rem;
    }
}

/* ==========================================================================
   LOGIN SECTION
   ========================================================================== */

.login-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

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

.login-image-wrapper {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-primary);
    order: -1;
}

.login-image-wrapper img {
    width: 100%;
    height: auto;
}

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

.login-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.login-cta {
    margin-top: 1.5rem;
}

/* Login Section Responsive */
@media (min-width: 768px) {
    .login-section {
        padding: var(--section-padding-tablet);
    }

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

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

@media (min-width: 1024px) {
    .login-section {
        padding: var(--section-padding-desktop);
    }

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

    .login-image-wrapper {
        order: 0;
    }

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

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

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

.promotions-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-primary);
}

.promo-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.promo-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.promo-badge {
    position: absolute;
    top: -10px;
    left: 1.5rem;
    padding: 0.375rem 1rem;
    background: var(--accent-gradient);
    border-radius: 20px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.promo-badge-alt {
    background: var(--gold-gradient);
}

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

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

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
}

.why-choose-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

/* Promotions Section Responsive */
@media (min-width: 640px) {
    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-cards .promo-card:last-child {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .promotions-section {
        padding: var(--section-padding-tablet);
    }

    .promo-card {
        padding: 2.25rem 1.75rem 1.75rem;
    }

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

    .why-choose-section {
        padding: 2rem;
    }

    .why-choose-section h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .promotions-section {
        padding: var(--section-padding-desktop);
    }

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

    .promo-cards .promo-card:last-child {
        grid-column: span 1;
    }

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

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

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

    .why-choose-section h3 {
        font-size: 1.375rem;
    }

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

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

.support-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

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

.support-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 50px;
}

.support-channel svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.support-channel span {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.support-image-wrapper {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-primary);
}

.support-image-wrapper img {
    width: 100%;
    height: auto;
}

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

/* Support Section Responsive */
@media (min-width: 768px) {
    .support-section {
        padding: var(--section-padding-tablet);
    }

    .support-content h2 {
        font-size: 1.875rem;
    }

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

    .support-channel span {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1024px) {
    .support-section {
        padding: var(--section-padding-desktop);
    }

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

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

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

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

.faq-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-primary);
}

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

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

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-primary);
}

.faq-item dd {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 1.25rem 1.5rem;
    margin: 0;
}

/* FAQ Section Responsive */
@media (min-width: 768px) {
    .faq-section {
        padding: var(--section-padding-tablet);
    }

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

    .faq-item dd {
        font-size: 1rem;
        padding: 1.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: var(--section-padding-desktop);
    }

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

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

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

.final-cta-section {
    padding: var(--section-padding-mobile);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(229, 57, 53, 0.15) 0%, transparent 60%),
        var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
}

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

.final-cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Final CTA Responsive */
@media (min-width: 480px) {
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: var(--section-padding-tablet);
    }

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

    .final-cta-content p {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-section {
        padding: var(--section-padding-desktop);
    }

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

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

footer[role="contentinfo"] {
    background: var(--bg-secondary);
    background-image:
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(229, 57, 53, 0.05) 0%, transparent 60%);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 100px;
}

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

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

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

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

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

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    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: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

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

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

.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.25s ease;
    display: inline-block;
}

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

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

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

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

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

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

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 2px 6px rgba(229, 57, 53, 0.3));
}

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

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

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

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

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

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

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

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

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

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

@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, 10, 15, 0.98);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

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

/* Primary Button */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 3px 12px rgba(229, 57, 53, 0.4);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(229, 57, 53, 0.55);
    color: var(--text-primary);
}

/* Extra Small Mobile */
@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 */
@media (min-width: 360px) and (max-width: 479px) {
    .sticky-btn {
        padding: 0.625rem 0.375rem;
        font-size: 0.7rem;
    }
}

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

/* Large Mobile */
@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 */
@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 */
@media (min-width: 1024px) {
    .sticky-bottom-bar {
        justify-content: center;
        padding: 1rem 3rem;
    }

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

/* ==========================================================================
   UTILITY CLASSES / BUTTONS
   ========================================================================== */

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

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(229, 57, 53, 0.5);
    color: var(--text-primary);
}

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

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(229, 57, 53, 0.1);
    color: var(--text-primary);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0d0a0f;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
    color: #0d0a0f;
}

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

.btn-full {
    width: 100%;
}

/* Button SVG Icons */
.btn svg {
    flex-shrink: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .sticky-bottom-bar,
    header[role="banner"],
    .mobile-menu-toggle,
    .mobile-menu-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    footer[role="contentinfo"] {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   PROMOTIONS PAGE STYLES - Pattern 6: Card/Floating Box Over Background
   ========================================================================== */

/* Promotions Hero Section */
.promo-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.promo-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

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

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 10, 15, 0.92) 0%,
        rgba(26, 21, 32, 0.85) 50%,
        rgba(13, 10, 15, 0.92) 100%
    );
}

.promo-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 3rem 1rem;
}

.promo-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    max-width: 800px;
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .promo-hero-container {
        padding: 5rem 3rem;
    }

    .promo-hero-card {
        padding: 3rem 2.5rem;
        max-width: 700px;
    }

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

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

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

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

/* ==========================================================================
   WELCOME BONUS SECTION
   ========================================================================== */

.promo-welcome-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

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

.welcome-bonus-info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.promo-badge-large {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gradient);
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

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

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

.bonus-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-primary);
}

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

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 10px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.bonus-steps li span:last-child {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 0.5rem;
}

.bonus-steps li span:last-child a {
    color: var(--accent-primary);
}

.bonus-steps li span:last-child a:hover {
    color: var(--accent-secondary);
}

.welcome-bonus-card .btn {
    width: 100%;
}

/* Welcome Bonus Responsive */
@media (min-width: 768px) {
    .promo-welcome-section {
        padding: var(--section-padding-tablet);
    }

    .welcome-bonus-card {
        padding: 3rem 2rem 2rem;
    }

    .welcome-bonus-card h3 {
        font-size: 1.375rem;
    }

    .welcome-bonus-card .btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .promo-welcome-section {
        padding: var(--section-padding-desktop);
    }

    .welcome-bonus-info p {
        font-size: 1rem;
    }

    .welcome-bonus-card {
        padding: 3rem 2.5rem 2rem;
    }

    .welcome-bonus-card h3 {
        font-size: 1.5rem;
    }

    .welcome-bonus-card > p {
        font-size: 1rem;
    }

    .bonus-steps li span:last-child {
        font-size: 1rem;
    }
}

/* ==========================================================================
   CASHBACK SECTION
   ========================================================================== */

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

.cashback-content > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

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

.cashback-table-wrapper h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.cashback-table-wrapper > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

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

.tier-table th {
    background: var(--bg-tertiary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    white-space: nowrap;
}

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

.tier-table tbody tr:hover {
    background: rgba(229, 57, 53, 0.05);
}

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

.tier-table .highlight-value {
    color: var(--accent-secondary);
    font-weight: 600;
}

.tier-table .vip-row {
    background: rgba(255, 193, 7, 0.05);
}

.tier-table .vip-row:hover {
    background: rgba(255, 193, 7, 0.1);
}

/* Mobile Table for Tier */
@media (max-width: 639px) {
    .tier-table {
        min-width: unset;
    }

    .tier-table thead {
        display: none;
    }

    .tier-table tbody tr {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-primary);
    }

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

    .tier-table td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .tier-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
        margin-right: 1rem;
    }
}

/* Cashback Responsive */
@media (min-width: 768px) {
    .promo-cashback-section {
        padding: var(--section-padding-tablet);
    }

    .cashback-table-wrapper {
        padding: 2rem;
    }

    .cashback-table-wrapper h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .promo-cashback-section {
        padding: var(--section-padding-desktop);
    }

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

    .cashback-table-wrapper h3 {
        font-size: 1.375rem;
    }

    .cashback-table-wrapper > p {
        font-size: 1rem;
    }

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

/* ==========================================================================
   HIGH PAYOUT SECTION
   ========================================================================== */

.promo-payout-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.payout-content > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

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

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

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

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.comparison-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-card .card-header {
    padding: 1rem 1.25rem;
    background: var(--bg-hover);
    border-bottom: 1px solid var(--border-primary);
}

.comparison-card .card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gradient);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.comparison-card .card-badge-muted {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-muted);
}

.comparison-card h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

.comparison-card .card-body {
    padding: 1.25rem;
}

.payout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-primary);
}

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

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

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

.payout-value.highlight-gold {
    color: var(--accent-secondary);
}

.payout-value.muted {
    color: var(--text-muted);
}

.comparison-card .card-footer {
    padding: 1rem 1.25rem;
    background: var(--bg-hover);
    text-align: center;
}

.no-limit-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gold-gradient);
    border-radius: 20px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0d0a0f;
}

.limit-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.lotto888-card {
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.1);
}

.comparison-note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border-left: 4px solid var(--accent-secondary);
}

/* Payout Section Responsive */
@media (min-width: 768px) {
    .promo-payout-section {
        padding: var(--section-padding-tablet);
    }

    .payout-comparison {
        padding: 2rem;
    }

    .payout-comparison h3 {
        font-size: 1.25rem;
    }

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

@media (min-width: 1024px) {
    .promo-payout-section {
        padding: var(--section-padding-desktop);
    }

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

    .payout-comparison h3 {
        font-size: 1.375rem;
    }

    .payout-comparison > p {
        font-size: 1rem;
    }

    .comparison-note {
        font-size: 1rem;
    }
}

/* ==========================================================================
   VIP SECTION
   ========================================================================== */

.promo-vip-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 80% 20%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
}

.vip-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.vip-image-wrapper {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft), var(--shadow-gold);
    border: 1px solid var(--border-secondary);
}

.vip-image-wrapper img {
    width: 100%;
    height: auto;
}

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

.vip-content .vip-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.vip-benefits {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

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

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

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

.vip-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-primary);
}

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

.vip-benefits-list li svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

/* VIP Section Responsive */
@media (min-width: 768px) {
    .promo-vip-section {
        padding: var(--section-padding-tablet);
    }

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

    .vip-benefits {
        padding: 2rem;
    }

    .vip-benefits h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .promo-vip-section {
        padding: var(--section-padding-desktop);
    }

    .vip-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }

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

    .vip-content {
        flex: 1;
    }

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

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

    .vip-benefits h3 {
        font-size: 1.375rem;
    }

    .vip-benefits > p {
        font-size: 1rem;
    }

    .vip-benefits-list li span {
        font-size: 1rem;
    }
}

/* ==========================================================================
   REFERRAL SECTION
   ========================================================================== */

.promo-referral-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
}

.referral-content > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

.referral-steps-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 700px;
}

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

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

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

.referral-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-primary);
}

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

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

.referral-steps li span:last-child {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.referral-steps li span:last-child a {
    color: var(--accent-primary);
}

.referral-steps li span:last-child a:hover {
    color: var(--accent-secondary);
}

/* Referral Responsive */
@media (min-width: 768px) {
    .promo-referral-section {
        padding: var(--section-padding-tablet);
    }

    .referral-steps-card {
        padding: 2rem;
    }

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

@media (min-width: 1024px) {
    .promo-referral-section {
        padding: var(--section-padding-desktop);
    }

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

    .referral-steps-card h3 {
        font-size: 1.375rem;
    }

    .referral-steps-card > p {
        font-size: 1rem;
    }

    .referral-steps li span:last-child {
        font-size: 1rem;
    }
}

/* ==========================================================================
   YEEKEE BONUS SECTION
   ========================================================================== */

.promo-yeekee-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-primary);
}

.yeekee-content > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

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

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

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

.lottery-types-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.lottery-type-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lottery-type-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.lottery-type-item .lottery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.lottery-type-item .lottery-icon-alt {
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent-secondary);
}

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

.lottery-type-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Yeekee Responsive */
@media (min-width: 640px) {
    .lottery-types-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .lottery-type-wide {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .promo-yeekee-section {
        padding: var(--section-padding-tablet);
    }

    .lottery-types-grid {
        padding: 2rem;
    }

    .lottery-types-grid h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .promo-yeekee-section {
        padding: var(--section-padding-desktop);
    }

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

    .lottery-types-grid h3 {
        font-size: 1.375rem;
    }

    .lottery-types-grid > p {
        font-size: 1rem;
    }

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

    .lottery-type-wide {
        grid-column: span 1;
    }

    .lottery-type-item h4 {
        font-size: 1.0625rem;
    }

    .lottery-type-item p {
        font-size: 0.9375rem;
    }
}

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

.promo-cta-section {
    padding: var(--section-padding-mobile);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(229, 57, 53, 0.12) 0%, transparent 60%),
        var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
}

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

.promo-cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promo-cta-content p a {
    color: var(--accent-primary);
}

.promo-cta-content p a:hover {
    color: var(--accent-secondary);
}

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

/* Promo CTA Responsive */
@media (min-width: 480px) {
    .promo-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .promo-cta-section {
        padding: var(--section-padding-tablet);
    }

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

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

@media (min-width: 1024px) {
    .promo-cta-section {
        padding: var(--section-padding-desktop);
    }

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

    .promo-cta-content p {
        font-size: 1.125rem;
    }
}

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

.promo-faq-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-primary);
}

/* Promotions FAQ reuses the main FAQ styles from homepage */

@media (min-width: 768px) {
    .promo-faq-section {
        padding: var(--section-padding-tablet);
    }
}

@media (min-width: 1024px) {
    .promo-faq-section {
        padding: var(--section-padding-desktop);
    }
}
