/* ==========================================================================
   HENG36 - MAIN STYLES
   Unique Design: Emerald Fortune Theme with Gold Accents
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
    /* Background Colors */
    --bg-primary: #0a0f14;
    --bg-secondary: #0d1318;
    --bg-tertiary: #141c24;
    --bg-hover: #1a252f;
    --bg-card: linear-gradient(145deg, #111921 0%, #0d1318 100%);

    /* Text Colors */
    --text-primary: #f4f7fa;
    --text-secondary: #9aa8b8;
    --text-muted: #5c6b7a;

    /* Accent Colors - Emerald & Gold Theme */
    --accent-primary: #10b981;
    --accent-primary-rgb: 16, 185, 129;
    --accent-secondary: #f59e0b;
    --accent-secondary-rgb: 245, 158, 11;
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --accent-gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);

    /* Border Colors */
    --border-primary: rgba(16, 185, 129, 0.15);
    --border-secondary: rgba(245, 158, 11, 0.2);
    --border-glow: rgba(16, 185, 129, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);
    --shadow-gold-glow: 0 0 20px rgba(245, 158, 11, 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;
    color: var(--text-primary);
}

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

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

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

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

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

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

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.brand a:hover {
    transform: scale(1.02);
}

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

/* Navigation Menu */
nav[role="navigation"] {
    display: flex;
    align-items: center;
}

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

.nav-menu li a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--text-secondary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s ease;
    position: relative;
}

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

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-primary);
    background: rgba(16, 185, 129, 0.08);
}

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

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gold-gradient);
    color: #1a1a1a;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    transition: all 0.3s ease;
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

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

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

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

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.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;
    transform: scaleX(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: all 0.35s ease;
    z-index: 999;
    backdrop-filter: blur(4px);
}

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

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

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

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

.nav-menu.active li a::after {
    display: none;
}

.nav-menu.active li a:hover,
.nav-menu.active li a:focus {
    background: var(--bg-tertiary);
    transform: translateX(4px);
}

.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-gold-gradient);
    color: #1a1a1a;
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    transition: all 0.3s ease;
}

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

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

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

/* Footer Top - Grid 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: 1.25rem;
    transition: transform 0.3s ease;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.25));
}

.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: 12px;
    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: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

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

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

.footer-heading {
    font-family: '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: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
}

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

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

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

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

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

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

.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: 2rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 1.5rem;
    background: rgba(16, 185, 129, 0.03);
}

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

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

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

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

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

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

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

/* ==========================================================================
   STICKY BOTTOM BUTTONS - Emerald Fortune Design
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0.875rem;
    background: linear-gradient(180deg, rgba(10, 15, 20, 0.95) 0%, var(--bg-primary) 100%);
    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: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

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

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

/* Primary Button (Main CTA) */
.sticky-btn-primary {
    background: var(--accent-gold-gradient);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

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

/* Responsive Sticky Buttons */
@media (max-width: 359px) {
    .sticky-bottom-bar {
        padding: 0.5rem 0.5rem;
        gap: 0.375rem;
    }

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

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

@media (min-width: 480px) and (max-width: 575px) {
    .sticky-bottom-bar {
        padding: 0.75rem 1rem;
    }

    .sticky-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
}

@media (min-width: 576px) {
    .sticky-bottom-bar {
        padding: 0.875rem 1.25rem;
        gap: 0.75rem;
    }

    .sticky-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        border-radius: 12px;
    }
}

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

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

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

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

/* ==========================================================================
   RESPONSIVE HEADER & FOOTER
   ========================================================================== */

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .header-container {
        padding: 0.75rem 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;
        border: none;
        padding: 0;
        box-shadow: none;
        animation: none;
    }

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

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

    .header-cta {
        display: block;
    }

    /* Footer Tablet */
    .footer-container {
        padding: 3.5rem 2rem 1.5rem;
    }

    .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-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) {
    .header-container {
        padding: 0.75rem 3rem;
    }

    .header-logo {
        height: 50px;
    }

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

    .header-cta .btn-cta {
        padding: 0.6875rem 1.75rem;
    }

    /* Footer Desktop */
    .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-logo {
        height: 55px;
    }

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

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

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

    .nav-menu {
        gap: 0.375rem;
    }

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

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

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

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

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

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

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

.btn-full {
    width: 100%;
}

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

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(16, 185, 129, 0.15);
    border: 1px solid var(--border-primary);
}

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

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

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

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

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

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

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

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

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

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

.slots-image {
    margin: 0 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

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

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

.slots-text p:last-child {
    margin-bottom: 0;
}

/* Providers Subsection */
.providers-subsection {
    margin-bottom: 2.5rem;
}

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

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

.providers-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.providers-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    min-width: 500px;
}

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

.providers-table th {
    background: var(--bg-secondary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

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

.providers-table tr:hover td {
    background: var(--bg-hover);
}

.providers-table td strong {
    color: var(--accent-secondary);
}

/* Slot Tips Subsection */
.slot-tips-subsection h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.slot-tips-subsection p:last-child {
    margin-bottom: 0;
}

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

.casino-content {
    margin-bottom: 2.5rem;
}

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

.casino-image {
    margin: 1.5rem 0 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

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

/* Card Games Subsection */
.card-games-subsection h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.casino-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

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

.casino-game-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.casino-game-card .game-icon {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.casino-game-card span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.banking-content {
    margin-bottom: 2.5rem;
}

.banking-image {
    margin: 0 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

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

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

.banking-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.banking-feature .feature-value {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

.banking-feature .feature-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Payment Methods */
.payment-methods-subsection h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

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

.payment-icon span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

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

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

.lottery-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

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

.lottery-type:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.lottery-name {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.lottery-payout {
    font-size: 0.8125rem;
    color: var(--accent-secondary);
    font-weight: 500;
}

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

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

.promotions-image {
    margin: 0 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

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

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

.promotions-text .btn {
    margin-top: 0.5rem;
}

/* Popular Promos */
.popular-promos-subsection h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.popular-promos-subsection > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.promo-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gold-gradient);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.promo-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

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

.access-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

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

/* Mobile App Subsection */
.mobile-app-subsection {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.mobile-app-subsection h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

.app-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

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

.app-feature span {
    font-size: 0.875rem;
}

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

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

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

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.support-channels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    min-width: 100px;
    transition: all 0.3s ease;
}

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

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

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

.faq-item dt::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-primary);
}

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

.faq-item dd::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-secondary);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 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-buttons .btn {
    width: 100%;
    max-width: 300px;
}

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

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

    /* Hero */
    .hero-section {
        padding: 3rem 0 4rem;
    }

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

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }

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

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

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

    /* Features */
    .features-section {
        padding: 4rem 0;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

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

    /* Slots */
    .slots-section {
        padding: 4rem 0;
    }

    .slots-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .slots-image {
        margin: 0;
    }

    /* Casino */
    .casino-section {
        padding: 4rem 0;
    }

    .casino-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .casino-image {
        margin: 0;
        order: 2;
    }

    .casino-games-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Banking */
    .banking-section {
        padding: 4rem 0;
    }

    .banking-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .banking-image {
        margin: 0;
    }

    .banking-features {
        gap: 2.5rem;
    }

    .banking-feature .feature-value {
        font-size: 2.5rem;
    }

    /* Lottery */
    .lottery-section {
        padding: 4rem 0;
    }

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

    /* Promotions */
    .promotions-section {
        padding: 4rem 0;
    }

    .promotions-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .promotions-image {
        margin: 0;
    }

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

    /* Access */
    .access-section {
        padding: 4rem 0;
    }

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

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

    .mobile-app-subsection {
        padding: 2rem;
    }

    /* Security */
    .security-section {
        padding: 4rem 0;
    }

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

    /* Support */
    .support-section {
        padding: 4rem 0;
    }

    /* FAQ */
    .faq-section {
        padding: 4rem 0;
    }

    .faq-list {
        gap: 1.25rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 5rem 0;
    }

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

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

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

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

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

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

    .hero-container {
        gap: 4rem;
        padding: 0 3rem;
    }

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

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

    /* Features */
    .features-section {
        padding: 5rem 0;
    }

    .features-grid {
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

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

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

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

    /* Slots */
    .slots-section {
        padding: 5rem 0;
    }

    .slots-content {
        gap: 3rem;
    }

    /* Casino */
    .casino-section {
        padding: 5rem 0;
    }

    .casino-content {
        gap: 3rem;
    }

    /* Banking */
    .banking-section {
        padding: 5rem 0;
    }

    .banking-content {
        gap: 3rem;
    }

    /* Lottery */
    .lottery-section {
        padding: 5rem 0;
    }

    /* Promotions */
    .promotions-section {
        padding: 5rem 0;
    }

    .promotions-content {
        gap: 3rem;
    }

    /* Access */
    .access-section {
        padding: 5rem 0;
    }

    .mobile-app-subsection {
        padding: 2.5rem;
    }

    /* Security */
    .security-section {
        padding: 5rem 0;
    }

    /* Support */
    .support-section {
        padding: 5rem 0;
    }

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

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

    /* Final CTA */
    .final-cta-section {
        padding: 6rem 0;
    }

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

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

/* ==========================================================================
   RESPONSIVE - LARGE DESKTOP (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    .section-container {
        padding: 0 4rem;
    }

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

    /* Hero */
    .hero-container {
        padding: 0 4rem;
    }

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

    /* Features */
    .feature-card {
        padding: 2.25rem;
    }

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

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE (< 360px)
   ========================================================================== */
@media (max-width: 359px) {
    .section-container {
        padding: 0 0.75rem;
    }

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

    /* Hero */
    .hero-section {
        padding: 1.5rem 0 2rem;
    }

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

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

    .hero-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Features */
    .features-grid {
        gap: 0.75rem;
    }

    .feature-card {
        padding: 1rem;
    }

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

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

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

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

    /* Banking features */
    .banking-features {
        gap: 1rem;
    }

    .banking-feature .feature-value {
        font-size: 1.5rem;
    }

    .banking-feature .feature-label {
        font-size: 0.6875rem;
    }

    /* Casino games */
    .casino-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Promo cards */
    .promo-card {
        padding: 1.25rem;
    }

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

    /* Security badges */
    .security-badges {
        gap: 0.75rem;
    }

    .security-badge {
        padding: 1rem;
    }

    .security-badge svg {
        width: 36px;
        height: 36px;
    }

    /* FAQ */
    .faq-item {
        padding: 1rem;
    }

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

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

    /* Final CTA */
    .final-cta-content h2 {
        font-size: 1.25rem;
    }

    .final-cta-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

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

/* Promotions Hero Section - Pattern 4: Stacked/Vertical */
.promo-hero-section {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.promo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    transform: translateX(-50%);
    pointer-events: none;
}

.promo-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

.promo-hero-content h1 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promo-hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.promo-hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(245, 158, 11, 0.2);
    border: 1px solid var(--border-secondary);
}

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

/* Promotions Sections Base */
.promo-section {
    padding: 3rem 0;
}

.promo-section:nth-child(odd) {
    background: var(--bg-primary);
}

.promo-section:nth-child(even) {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Content Grid Layout */
.promo-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

/* Promo Highlight Box */
.promo-highlight-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    margin-top: 1.5rem;
}

.promo-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.promo-highlight-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.promo-highlight-value {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-secondary);
    line-height: 1;
}

.promo-highlight-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.promo-highlight-max {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Promo Steps */
.promo-steps-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.promo-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

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

.step-content strong {
    color: var(--text-primary);
}

.promo-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 8px 8px 0;
}

/* Content with Image Layout */
.promo-content-with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

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

/* Channels Grid */
.promo-channels-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.promo-channels-section > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

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

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

.channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
}

.promo-channel-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.promo-channel-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Cashback Table */
.cashback-table-section {
    margin-top: 2.5rem;
}

.cashback-table-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.promo-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    margin-bottom: 1.5rem;
}

.promo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    min-width: 500px;
}

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

.promo-table th {
    background: var(--bg-secondary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

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

.promo-table tr:hover td {
    background: var(--bg-hover);
}

.highlight-percent {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-primary);
    border-radius: 4px;
    font-weight: 600;
}

.highlight-percent.vip {
    background: var(--accent-gold-gradient);
    color: #1a1a1a;
}

/* Deposit Promos Grid */
.deposit-promos-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.deposit-promos-section > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.promo-intro-text {
    margin-bottom: 2.5rem;
}

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

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

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

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

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

.deposit-promo-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gold-gradient);
    color: #1a1a1a;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.deposit-promo-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.deposit-promo-card > p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* Referral Section */
.referral-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.referral-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.referral-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    color: var(--accent-primary);
}

.referral-percent {
    font-family: 'Prompt', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.referral-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.referral-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.referral-benefits span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 20px;
}

/* Events Section */
.events-content {
    margin-bottom: 2.5rem;
}

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

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

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

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

.event-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    color: var(--accent-secondary);
}

.event-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

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

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

/* Claim Section */
.claim-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Promo Final CTA */
.promo-final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
}

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

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

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

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

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

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

    .promo-section {
        padding: 4rem 0;
    }

    .promo-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .promo-content-with-image {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .promo-content-with-image.promo-content-reverse .promo-image {
        order: 2;
    }

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

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

    .deposit-promo-card:last-child:nth-child(odd) {
        grid-column: span 1;
    }

    .referral-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .referral-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .promo-hero-content {
        margin-bottom: 2.5rem;
    }

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

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

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

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

    .promo-highlight-value {
        font-size: 3rem;
    }

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

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

    .referral-percent {
        font-size: 4rem;
    }
}

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

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

/* Small Mobile - < 360px */
@media (max-width: 359px) {
    .promo-hero-section {
        padding: 1.5rem 0 2rem;
    }

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

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

    .promo-section {
        padding: 2rem 0;
    }

    .promo-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .promo-highlight-value {
        font-size: 2rem;
    }

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

    .deposit-promos-grid {
        grid-template-columns: 1fr;
    }

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

    .events-features {
        grid-template-columns: 1fr;
    }

    .referral-percent {
        font-size: 2.5rem;
    }

    .referral-highlight {
        padding: 1.5rem;
    }
}
