/* ==========================================================================
   MYEXCH GLOBAL STYLESHEET
   Refined for German Luxury Design Language (High Contrast, Precision, Whitespace)
   ========================================================================== */

/* ==========================================================================
   SECTION 1: GLOBAL BRAND VARIABLE TOKENS
   ========================================================================== */
:root {
    /* Hotfix aliases for SEO pages */
    --bg-main: var(--bg-page);
    --bg-header: var(--bg-header-footer);
    --accent-yellow: var(--brand-gold);

    /* Brand Colors (Vibrant Royal Blue & Golden Yellow) */
    --brand-blue: #0b3298;
    --brand-blue-hover: #072269;
    --brand-blue-dark: #041c58;
    --brand-gold: #ffd200;
    --brand-gold-hover: #e0b800;
    --brand-gold-glow: rgba(255, 210, 0, 0.25);
    
    /* Neutral & Page Surfaces */
    --bg-page: #0b3298;           /* Royal Blue backdrop */
    --bg-header-footer: #041c58;   /* Deep Navy header/footer */
    --bg-card-dark: #072269;      /* Inner card elements/containers */
    --bg-card-light: #ffffff;     /* Pure White login card background */
    --bg-input: #ffffff;          /* White form input fields */
    
    /* Interactive Betting odds colors */
    --back-odds: #72bbef;
    --back-odds-hover: #50a9e9;
    --lay-odds: #faa9ba;
    --lay-odds-hover: #f78da2;
    
    /* Feedback & Utility Colors */
    --success-green: #22c55e;
    --danger-red: #ef4444;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #20ba5a;
    
    /* Typography Palette (High-Contrast for Blue/White) */
    --text-silver: #f1f5f9;       /* White/Silver text for blue sections */
    --text-secondary: #cbd5e1;    /* Light gray text for blue sections */
    --text-muted: #94a3b8;       /* Muted gray text for blue sections */
    --text-dark: #1e293b;         /* Dark text for white card containers */
    --text-blue: #0b3298;         /* Blue text inside white cards */
    
    /* Borders & Outlines */
    --border-brand: rgba(255, 210, 0, 0.35);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-input: #cccccc;      /* Light gray border for form inputs */
    
    /* Font Families */
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    /* Transitions & Motion */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Elevation Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 4px 24px rgba(255, 210, 0, 0.15);
}

/* ==========================================================================
   SECTION 2: BASE DOCUMENT RESET & CONFIGURATION
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-page);
    color: var(--text-silver);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--brand-blue-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-blue-hover);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gold);
}

/* Dynamic Typography Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-silver);
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Global utility classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.subheading {
    display: inline-block;
    color: var(--brand-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
}

.highlight {
    color: var(--brand-gold);
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   SECTION 3: HEADER NAVIGATION BAR SYSTEM (German Clean Alignment)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header-footer);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Generous, precise height */
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 46px; /* Scaled cleanly */
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 36px; /* Spacious menu spacing */
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--text-silver);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--brand-gold);
}

.nav-menu a.active::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-login-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.header-login-link:hover {
    color: var(--brand-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-silver);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   SECTION 4: BUTTON SYSTEM UTILITIES (Solid Champagne Gold Accent)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 6px; /* Sharp and precise corners */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--brand-gold);
    color: #050608;
    border-color: var(--brand-gold);
}

.btn-primary:hover {
    background: var(--brand-gold-hover);
    border-color: var(--brand-gold-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-silver);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

.btn-outline:hover {
    background: rgba(202, 164, 80, 0.08);
    transform: translateY(-1px);
}

.btn-gold {
    background: transparent;
    color: var(--brand-gold);
    border: 1px solid var(--brand-gold);
}

.btn-gold:hover {
    background: var(--brand-gold);
    color: #050608;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.icon-whatsapp-svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   SECTION 5: INPUT FORM CONTROLS & CHECKBOXES
   ========================================================================== */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group select {
    background: var(--bg-input);
    border: 1.5px solid var(--border-input);
    color: var(--text-dark);
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition-fast);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 10px rgba(11, 50, 152, 0.15);
    background: #ffffff;
}

/* Custom checkbox rules */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    user-select: none;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #ffffff;
    border: 1px solid var(--border-input);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--brand-blue);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ==========================================================================
   SECTION 6: DEDICATED LOGIN & SIGNUP CARD LAYOUTS (German Luxury Center)
   ========================================================================== */
.login-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px 80px 20px;
    position: relative;
}

.login-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, var(--brand-blue) 100%);
    pointer-events: none;
}

.login-content-wrapper {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-input);
    border-radius: 12px;
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.login-card:hover {
    border-color: rgba(11, 50, 152, 0.25);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.login-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-card-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.login-card-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-blue);
    letter-spacing: -0.5px;
}

.login-card-header p {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.forgot-pass-link {
    color: var(--brand-blue);
    font-weight: 700;
}

.forgot-pass-link:hover {
    color: var(--brand-blue-hover);
}

.login-card-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-card-divider::before, .login-card-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-input);
}

.login-card-divider:not(:empty)::before {
    margin-right: 1em;
}

.login-card-divider:not(:empty)::after {
    margin-left: 1em;
}

.login-actions {
    text-align: center;
}

.login-actions h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-actions p {
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Custom buttons for white login card */
.login-card .btn-primary {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
}

.login-card .btn-primary:hover {
    background: var(--brand-blue-hover);
    border-color: var(--brand-blue-hover);
    box-shadow: 0 4px 12px rgba(11, 50, 152, 0.2);
}

.login-card .btn-secondary {
    background: #ffffff;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.login-card .btn-secondary:hover {
    background: rgba(11, 50, 152, 0.05);
    border-color: var(--brand-blue-hover);
}

.login-card .btn-gold {
    background: var(--brand-blue);
    color: #ffffff;
    border: 1px solid var(--brand-blue);
}

.login-card .btn-gold:hover {
    background: var(--brand-blue-hover);
    border-color: var(--brand-blue-hover);
    color: #ffffff;
}

/* Support and link elements below the card */
.btn-support {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue-dark);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    transition: var(--transition-fast);
}

.btn-support:hover {
    background: var(--brand-blue-hover);
    transform: translateY(-1px);
}

.login-footer-text {
    text-align: center;
    color: var(--text-silver);
    font-size: 0.85rem;
}

.login-footer-text strong {
    color: var(--brand-gold);
}

.login-footer-text a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.login-footer-text a:hover {
    color: var(--brand-gold);
}

.seo-keywords-links {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.seo-keywords-links a {
    color: var(--text-secondary);
}

.seo-keywords-links a:hover {
    color: var(--brand-gold);
}

/* Spinner indicator */
.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #050608;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   SECTION 7: ACTIVE SPORTS BOOK & EXCHANGE ODDS WIDGETS
   ========================================================================== */
.odds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.odd-card {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
}

.odd-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-brand);
    box-shadow: var(--shadow-glow);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sport-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-gold);
    letter-spacing: 1.5px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.live-indicator::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulseRed 1.5s infinite;
}

.card-match-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-league {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.odds-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.odds-box {
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: var(--transition-fast);
}

.odds-team-name {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.odds-value-wrapper {
    display: flex;
    justify-content: center;
}

.odds-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #050608;
}

.odds-box.back {
    background-color: var(--back-odds);
}

.odds-box.back:hover {
    background-color: var(--back-odds-hover);
}

.odds-box.lay {
    background-color: var(--lay-odds);
}

.odds-box.lay:hover {
    background-color: var(--lay-odds-hover);
}

/* Flash classes for live updates */
.odds-box.flash-up {
    outline: 2.5px solid var(--success-green);
}

.odds-box.flash-down {
    outline: 2.5px solid var(--danger-red);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.odds-link-lbl {
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.odds-cta-box {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 36px;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.odds-cta-box p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* Skeleton loader */
.odd-card.skeleton {
    height: 230px;
    background: linear-gradient(90deg, var(--bg-card-dark) 25%, var(--brand-blue-hover) 50%, var(--bg-card-dark) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* ==========================================================================
   SECTION 8: DYNAMIC CONTENT MODULES
   ========================================================================== */

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 60% 30%, rgba(202, 164, 80, 0.05) 0%, rgba(10, 10, 12, 0) 60%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(202, 164, 80, 0.07);
    color: var(--brand-gold);
    border: 1px solid var(--border-brand);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-gold);
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-img {
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: scale(1.02);
    border-color: var(--brand-gold);
}

/* Info Ribbon (Marquee) */
.info-ribbon {
    background: var(--bg-header-footer);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    overflow: hidden;
}

.ribbon-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 22s linear infinite;
}

.ribbon-track span {
    font-family: var(--font-display);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

/* How It Works Steps (Container/Bento Block look) */
.how-it-works-section {
    background: var(--brand-blue-dark);
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: #ffffff;
    border: 1px solid rgba(11, 50, 152, 0.15);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 210, 0, 0.12);
}

.step-num-badge {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(11, 50, 152, 0.08);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--brand-blue-dark);
}

.step-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-card p strong {
    color: var(--brand-blue);
}

/* Trust Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.features-intro .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.features-intro p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bullet-item {
    display: flex;
    gap: 16px;
}

.bullet-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(202, 164, 80, 0.15);
    color: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.bullet-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.bullet-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.features-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.f-card {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px 24px;
    transition: var(--transition-smooth);
}

.f-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-3px);
}

.f-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.f-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.f-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Casino Games Lobby */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.casino-card {
    height: 350px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
}

.casino-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-gold);
}

.casino-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--brand-gold);
    color: #050608;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.casino-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.casino-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Customer Testimonials */
.testimonials-section {
    background: var(--brand-blue-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.t-card {
    background: #ffffff;
    border: 1px solid rgba(11, 50, 152, 0.12);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.t-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 210, 0, 0.12);
}

.stars {
    color: var(--brand-gold);
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.t-text {
    color: #475569;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--brand-gold);
    color: #050608;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.t-author h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--brand-blue-dark);
    font-weight: 700;
}

.t-author p, .t-author span {
    color: #64748b;
    font-size: 0.8rem;
}

/* Interactive FAQs Accordion */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--brand-gold);
}

.faq-toggle {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    background: transparent;
    border: none;
    color: var(--text-silver);
    outline: none;
}

.faq-content {
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--brand-gold);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.faq-content p {
    padding: 0 30px 24px 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Final CTA Banner */
.cta-banner-section {
    padding: 100px 24px;
    background: radial-gradient(circle at center, rgba(202, 164, 80, 0.08) 0%, rgba(10, 10, 12, 0) 70%);
}

.cta-banner-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card-dark);
    border: 1px solid var(--border-brand);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-banner-container h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-banner-container p {
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ==========================================================================
   SECTION 9: FOOTER SYSTEMS (Generous Spacing)
   ========================================================================== */
.footer {
    background: #020305;
    border-top: 1px solid var(--border-light);
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.footer-brand {
    max-width: 460px;
}

.footer-brand .logo-link {
    margin-bottom: 24px;
}

.brand-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 0.95rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-gold);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: var(--brand-gold);
}

.footer-seo-content {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 24px;
}

.footer-seo-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--brand-gold);
}

.footer-seo-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-bottom {
    padding: 32px 24px;
    background: #010102;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.disclaimer-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
    max-width: 650px;
    text-align: right;
}

/* ==========================================================================
   SECTION 10: FLOATING WIDGETS
   ========================================================================== */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-fast);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp-widget:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.08) rotate(5deg);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.floating-whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   SECTION 11: FLUID RESPONSIVE VIEWPORT BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .features-intro {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-header-footer);
        z-index: 999;
        border-top: 1px solid var(--border-light);
        padding: 40px 24px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-menu a {
        font-size: 1.15rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-note {
        text-align: center;
    }
    
    .features-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-container h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .login-card {
        padding: 32px 24px;
    }
    
    .login-card-header h1 {
        font-size: 1.5rem;
    }

    /* Mobile: hide login link text, keep only button */
    .header-login-link {
        display: none;
    }

    /* Shorten CTA button text on tablet */
    .header-ctas .btn span {
        display: none;
    }

    .header-ctas .btn .icon-whatsapp-svg {
        width: 20px;
        height: 20px;
    }

    .header-ctas .btn {
        padding: 10px 14px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .login-main {
        padding-top: 100px;
    }
    
    .login-card {
        padding: 28px 18px;
    }
    
    .form-group input, .form-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    /* Restore CTA button text on small phones (icon-only was for tablet) */
    .header-ctas .btn span {
        display: inline;
    }

    .header-ctas .btn {
        padding: 9px 12px;
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }

    /* Ensure header stays in one row on 480px */
    .header-container {
        height: 64px;
    }

    .nav-logo {
        height: 34px;
    }

    /* Overflow protection */
    .header-ctas {
        gap: 10px;
    }
}

/* ==========================================================================
   SECTION 12: SEO CONTENT BLOCKS (Keyword-Rich Page Sections)
   ========================================================================== */
.seo-content-section {
    background: var(--bg-header-footer);
    padding: 60px 24px;
    border-top: 2px solid var(--border-brand);
}

.seo-content-section .seo-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.seo-content-section h2.seo-main-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.seo-content-section h3.seo-sub-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-silver);
    margin: 28px 0 12px;
    border-left: 3px solid var(--brand-gold);
    padding-left: 14px;
}

.seo-content-section p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.seo-content-section strong {
    color: var(--text-silver);
    font-weight: 700;
}

.seo-content-section .seo-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 32px 0;
}

.seo-content-section .seo-keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.seo-content-section .seo-keyword-tag {
    background: rgba(255, 210, 0, 0.1);
    border: 1px solid rgba(255, 210, 0, 0.3);
    color: var(--brand-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.seo-content-section .seo-keyword-tag:hover {
    background: var(--brand-gold);
    color: #050608;
}

.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.seo-benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.seo-benefit-card:hover {
    border-color: var(--border-brand);
    background: rgba(255, 210, 0, 0.05);
}

.seo-benefit-card .benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.seo-benefit-card h4 {
    font-size: 1rem;
    color: var(--brand-gold);
    margin-bottom: 8px;
}

.seo-benefit-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.seo-steps-list {
    counter-reset: steps;
    list-style: none;
    margin: 24px 0;
}

.seo-steps-list li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 3px solid var(--brand-gold);
}

.seo-steps-list li::before {
    content: counter(steps);
    background: var(--brand-gold);
    color: #050608;
    font-weight: 800;
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.seo-steps-list li .step-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.seo-steps-list li .step-text strong {
    color: var(--text-silver);
}

.seo-faq-list {
    margin: 28px 0;
}

.seo-faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.seo-faq-item:last-child {
    border-bottom: none;
}

.seo-faq-item h4 {
    font-size: 1rem;
    color: var(--brand-gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.seo-faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.75;
}

.seo-cta-box {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #e0b800 100%);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    margin: 32px 0;
}

.seo-cta-box h3 {
    color: #050608;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.seo-cta-box p {
    color: rgba(5, 6, 8, 0.75);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.seo-cta-box .btn {
    background: #050608;
    color: var(--brand-gold);
    border-color: #050608;
}

.seo-cta-box .btn:hover {
    background: var(--brand-blue-dark);
    color: var(--brand-gold);
}

.seo-keyword-cloud {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid var(--border-light);
}

.seo-keyword-cloud h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.seo-keyword-cloud .tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-keyword-cloud .tag-links a {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.seo-keyword-cloud .tag-links a:hover {
    color: var(--brand-gold);
    border-color: rgba(255,210,0,0.3);
}

/* Dedicated landing page hero */
.landing-hero {
    background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="none" stroke="rgba(255,210,0,0.05)" stroke-width="1"/><circle cx="80" cy="80" r="60" fill="none" stroke="rgba(255,210,0,0.04)" stroke-width="1"/></svg>') center/cover;
    pointer-events: none;
}

.landing-hero h1 {
    font-size: 2.8rem;
    color: var(--text-silver);
    margin-bottom: 16px;
    position: relative;
}

.landing-hero h1 span {
    color: var(--brand-gold);
}

.landing-hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
    position: relative;
}

.landing-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.landing-breadcrumb {
    padding: 12px 24px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.landing-breadcrumb a {
    color: var(--brand-gold);
    text-decoration: none;
}

.landing-breadcrumb a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   SECTION 13: ENHANCED MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 40px 16px;
    }

    .seo-content-section h2.seo-main-heading {
        font-size: 1.5rem;
    }

    .seo-content-section h3.seo-sub-heading {
        font-size: 1.1rem;
    }

    .seo-content-section .seo-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .seo-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .landing-hero {
        padding: 120px 16px 48px;
    }

    .landing-hero h1 {
        font-size: 1.9rem;
    }

    .login-content-wrapper {
        padding: 16px;
    }

    .floating-whatsapp-widget {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }

    .header-container {
        padding: 0 16px;
        height: 68px;
        overflow: hidden;
    }

    .nav-logo {
        height: 38px;
        max-width: 140px;
        object-fit: contain;
    }

    /* HEADER FIX: hide text login link on mobile to prevent overflow */
    .header-login-link {
        display: none;
    }

    /* HEADER FIX: CTA button icon only on 768px */
    .header-ctas .btn span {
        display: none;
    }

    .header-ctas .btn {
        padding: 10px 12px;
        gap: 0;
    }

    .header-ctas .btn .icon-whatsapp-svg {
        width: 22px;
        height: 22px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.78rem;
    }
}

@media (max-width: 375px) {
    .seo-benefits-grid {
        grid-template-columns: 1fr;
    }

    .seo-content-section h2.seo-main-heading {
        font-size: 1.3rem;
    }

    .landing-hero h1 {
        font-size: 1.6rem;
    }

    /* Critical: keep header in one line at 375px */
    .header-container {
        height: 60px;
        overflow: hidden;
        padding: 0 12px;
    }

    .nav-logo {
        height: 32px;
        max-width: 120px;
    }

    /* Show WhatsApp button with short text or icon only */
    .header-ctas .btn span {
        display: none;
    }

    .header-ctas .btn {
        padding: 9px 11px;
    }

    .header-ctas {
        gap: 8px;
    }

    .mobile-toggle {
        margin-left: 4px;
    }

    .login-main {
        padding-top: 90px;
    }

    .login-card {
        padding: 22px 14px;
    }

    .seo-cta-box {
        padding: 24px 16px;
    }

    .seo-cta-box h3 {
        font-size: 1.15rem;
    }

    .landing-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .seo-steps-list li {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 320px) {
    .nav-logo {
        height: 30px;
    }

    .header-ctas .btn span {
        display: none;
    }

    .seo-content-section {
        padding: 32px 12px;
    }
}

