/* ==========================================================================
   FAW99 - MAIN STYLESHEET
   Color Scheme: Emerald Green & Gold on Dark
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
    /* Primary Colors - Emerald Green Theme */
    --accent-primary: #10b981;
    --accent-primary-rgb: 16, 185, 129;
    --accent-secondary: #059669;
    --accent-tertiary: #047857;
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --accent-gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --accent-gradient-hover: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);

    /* Background Colors */
    --bg-primary: #0a0f0d;
    --bg-secondary: #111916;
    --bg-tertiary: #1a2520;
    --bg-hover: #223029;
    --bg-card: rgba(17, 25, 22, 0.95);

    /* Text Colors */
    --text-primary: #f0fdf4;
    --text-secondary: #a7f3d0;
    --text-muted: #6ee7b7;
    --text-accent: #10b981;

    /* Border Colors */
    --border-primary: rgba(16, 185, 129, 0.15);
    --border-secondary: rgba(16, 185, 129, 0.25);
    --border-accent: rgba(16, 185, 129, 0.5);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(245, 158, 11, 0.3);

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
}

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

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

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

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

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

.skip-link:focus {
    top: 1rem;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 15, 13, 0.97) 100%);
    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.625rem 1rem;
}

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

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

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

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

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

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

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

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

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient-gold);
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-glow-gold);
    transition: all var(--transition-normal);
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
    filter: brightness(1.1);
}

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

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

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

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.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 var(--transition-normal), visibility var(--transition-normal);
    z-index: 999;
    backdrop-filter: blur(4px);
}

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

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

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

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.25rem;
}

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

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

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.25rem;
    background: var(--accent-gradient-gold);
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-glow-gold);
}

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

    .header-logo {
        height: 42px;
    }

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

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

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

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

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 46px;
    }

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

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

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

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

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

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

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

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    transition: transform var(--transition-fast);
}

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

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

.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: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

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

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

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

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

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

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

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

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

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.trust-badge:hover {
    color: var(--text-primary);
}

.trust-badge svg {
    color: var(--accent-primary);
    transition: all var(--transition-fast);
}

.trust-badge:hover svg {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.trust-badge span {
    font-size: 0.8125rem;
    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.9375rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8125rem;
    opacity: 0.8;
}

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

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

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

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

    .footer-heading::after {
        width: 40px;
    }

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

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

    .trust-badges {
        gap: 3rem;
    }

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

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

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

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

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

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

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

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: linear-gradient(180deg, rgba(10, 15, 13, 0.95) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -6px 24px 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: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-normal);
}

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

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

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

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

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

    .sticky-btn {
        padding: 0.625rem 0.25rem;
        font-size: 0.6875rem;
        border-radius: var(--radius-sm);
    }
}

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

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

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

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

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

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

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

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

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

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

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

.text-accent {
    color: var(--accent-primary);
}

.text-gold {
    color: var(--accent-gold);
}

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

/* Section Base Styles */
section {
    padding: 3rem 0;
}

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

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

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

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

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

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

/* Section Images */
.section-image-wrapper {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.section-image-wrapper:hover .section-image {
    transform: scale(1.02);
}

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

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

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

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

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

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

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

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

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

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
}

/* Button Large */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    gap: 0.625rem;
}

/* Gold Button */
.btn-gold {
    background: var(--accent-gradient-gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
    filter: brightness(1.1);
    color: var(--bg-primary);
}

/* ==========================================================================
   INFO CARDS
   ========================================================================== */
.info-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.info-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

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

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

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: var(--border-secondary);
}

/* Tips Card */
.tips-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, var(--bg-tertiary) 100%);
}

.tips-card h3::before {
    background: var(--accent-gradient-gold);
}

/* ==========================================================================
   LOGIN SECTION
   ========================================================================== */
.login-section {
    background: var(--bg-primary);
}

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

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.providers-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    font-size: 0.875rem;
}

.providers-table caption {
    padding: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

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

.providers-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.providers-table tbody tr {
    transition: background var(--transition-fast);
}

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

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

/* Mobile Table Styling */
@media (max-width: 639px) {
    .providers-table {
        display: block;
    }

    .providers-table thead {
        display: none;
    }

    .providers-table tbody,
    .providers-table tr {
        display: block;
    }

    .providers-table tr {
        margin-bottom: 1rem;
        border: 1px solid var(--border-primary);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .providers-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.875rem 1rem;
        border-bottom: 1px solid var(--border-primary);
    }

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

    .providers-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.8125rem;
    }
}

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

/* ==========================================================================
   PAYMENT SECTION
   ========================================================================== */
.payment-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.feature-list li strong {
    color: var(--text-primary);
}

/* Steps Card */
.steps-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, var(--bg-tertiary) 100%);
}

/* ==========================================================================
   PROMO SECTION
   ========================================================================== */
.promo-section {
    background: var(--bg-primary);
}

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

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2.5rem 0;
}

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

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

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

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

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

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

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.08) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
    text-align: center;
}

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

.cta-text a {
    color: var(--accent-primary);
    font-weight: 600;
}

.cta-text a:hover {
    color: var(--accent-gold-light);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
}

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

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

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

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

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

.faq-item dt {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
    position: relative;
    padding-left: 2.5rem;
}

.faq-item dt::before {
    content: 'Q';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

    /* Info Cards */
    .info-card {
        padding: 2rem;
    }

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

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* CTA Box */
    .cta-box {
        padding: 2.5rem 2rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }

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

    .faq-item dt::before {
        left: 1.25rem;
    }

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

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

    .section-container {
        padding: 0 3rem;
    }

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

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

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

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

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

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

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

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

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

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

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

/* Promotions Hero Section - Pattern 6: Card/Floating Box Over Background */
.promo-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.promo-hero-bg-image {
    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(10, 15, 13, 0.92) 0%,
        rgba(10, 15, 13, 0.85) 40%,
        rgba(10, 15, 13, 0.75) 100%
    );
}

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

.promo-hero-card {
    background: linear-gradient(
        135deg,
        rgba(17, 25, 22, 0.95) 0%,
        rgba(26, 37, 32, 0.9) 100%
    );
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    max-width: 800px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

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

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

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

/* Promotions Sections */
.promo-credit-section {
    background: var(--bg-primary);
}

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

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

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

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

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

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

.steps-list li a {
    color: var(--accent-primary);
    font-weight: 500;
}

.steps-list li a:hover {
    color: var(--accent-gold-light);
}

.info-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Promotions Table */
.promotions-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    font-size: 0.875rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.promotions-table caption {
    padding: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

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

.promotions-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promotions-table td {
    color: var(--text-secondary);
}

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

.promotions-table tbody tr {
    transition: background var(--transition-fast);
}

.promotions-table tbody tr:hover {
    background: var(--bg-hover);
}

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

/* Mobile Promotions Table */
@media (max-width: 639px) {
    .promotions-table {
        display: block;
    }

    .promotions-table thead {
        display: none;
    }

    .promotions-table tbody,
    .promotions-table tr {
        display: block;
    }

    .promotions-table tr {
        margin-bottom: 1rem;
        border: 1px solid var(--border-primary);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .promotions-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.875rem 1rem;
        border-bottom: 1px solid var(--border-primary);
    }

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

    .promotions-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.8125rem;
    }
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.contact-list li strong {
    color: var(--text-primary);
}

/* Responsive Promotions Hero - Tablet (768px+) */
@media (min-width: 768px) {
    .promo-hero-section {
        min-height: 550px;
    }

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

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

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

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

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

/* Responsive Promotions Hero - Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-hero-section {
        min-height: 600px;
    }

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

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

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

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

/* Responsive Promotions Hero - Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .promo-hero-section {
        min-height: 650px;
    }

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

    .promo-hero-card {
        padding: 3.5rem;
        max-width: 750px;
    }

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