/* ==========================================================================
   WURU STORE - DESIGN SYSTEM & STYLESHEET (MULTI-GAME UPDATE)
   Theme: Premium White & Blue (Clean, Trustworthy, Modern)
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    /* Color Palette */
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-contrast: #f0f9ff;
    --bg-contrast-hover: #e0f2fe;
    
    --primary: #2563eb;          /* Cobalt Blue */
    --primary-hover: #1d4ed8;    /* Royal Blue */
    --primary-light: #eff6ff;    /* Soft Ice Blue */
    
    --secondary: #0ea5e9;        /* Sky Blue */
    --secondary-hover: #0284c7;
    
    --success: #16a34a;          /* Verifiable Green */
    --success-light: #f0fdf4;
    
    --warning: #eab308;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    
    /* Text Colors */
    --text-primary: #0f172a;     /* Slate Dark Navy */
    --text-muted: #64748b;        /* Slate Cool Gray */
    --text-on-primary: #ffffff;
    
    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --border-color-active: #3b82f6;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.04), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-premium: 0 20px 25px -5px rgb(37 99 235 / 0.08), 0 8px 10px -6px rgb(37 99 235 / 0.08);

    /* Radius & Transitions */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Translucent & Theme Specific Layout Variables */
    --bg-header: rgba(255, 255, 255, 0.9);
    --bg-carousel-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
    --bg-carousel-gradient-mobile: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    --bg-footer: #0f172a;
    --bg-footer-bottom: #020617;
    --text-footer: #f8fafc;
    --text-footer-muted: #94a3b8;
    --border-footer: rgba(255, 255, 255, 0.05);
}

/* Automatic System Dark Mode Override */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-main: #090d16;          /* Rich Space Dark */
        --bg-surface: #111827;       /* Deep Slate surface */
        --bg-contrast: #1f2937;      /* Dark contrast */
        --bg-contrast-hover: #374151; /* Dark hover selection */
        
        --primary: #3b82f6;          /* Cobalt Blue (high vibrancy) */
        --primary-hover: #60a5fa;    /* Royal Blue (vibrant) */
        --primary-light: #1e293b;    /* Slate-tinted blue accents */
        
        --secondary: #38bdf8;        /* Bright Sky Blue */
        --secondary-hover: #7dd3fc;
        
        --success: #22c55e;          /* Vibrant Safe Green */
        --success-light: #062212;    /* Deep success green backdrop */
        
        --warning: #f59e0b;
        --danger: #ef4444;
        --danger-light: #2d1616;     /* Deep warning backdrop */
        
        /* Text Colors */
        --text-primary: #f8fafc;     /* Crisp Off-White */
        --text-muted: #94a3b8;        /* Soft Cool Slate */
        --text-on-primary: #ffffff;
        
        /* Borders & Shadows */
        --border-color: #1d283c;     /* Subtle dark slate borders */
        --border-color-active: #3b82f6;
        
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
        --shadow-premium: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);

        /* Translucent & Theme Specific Layout Variables */
        --bg-header: rgba(9, 13, 22, 0.9);
        --bg-carousel-gradient: linear-gradient(90deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.85) 60%, rgba(9, 13, 22, 0) 100%);
        --bg-carousel-gradient-mobile: linear-gradient(180deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.8) 100%);
        --bg-footer: #05080e;
        --bg-footer-bottom: #010204;
        --text-footer: #f8fafc;
        --text-footer-muted: #64748b;
        --border-footer: rgba(255, 255, 255, 0.05);
    }
}

:root[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-contrast: #f0f9ff;
    --bg-contrast-hover: #e0f2fe;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --secondary: #0ea5e9;
    --secondary-hover: #0284c7;
    --success: #16a34a;
    --success-light: #f0fdf4;
    --warning: #eab308;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --text-primary: #0f172a;
    --text-muted: #64748b;
    --text-on-primary: #ffffff;
    --border-color: #e2e8f0;
    --border-color-active: #3b82f6;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.04), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-premium: 0 20px 25px -5px rgb(37 99 235 / 0.08), 0 8px 10px -6px rgb(37 99 235 / 0.08);
    --bg-header: rgba(255, 255, 255, 0.9);
    --bg-carousel-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
    --bg-carousel-gradient-mobile: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    --bg-footer: #0f172a;
    --bg-footer-bottom: #020617;
    --text-footer: #f8fafc;
    --text-footer-muted: #94a3b8;
    --border-footer: rgba(255, 255, 255, 0.05);
}

:root[data-theme="dark"] {
    --bg-main: #090d16;
    --bg-surface: #111827;
    --bg-contrast: #1f2937;
    --bg-contrast-hover: #374151;
    --primary: #3b82f6;
    --primary-hover: #60a5fa;
    --primary-light: #1e293b;
    --secondary: #38bdf8;
    --secondary-hover: #7dd3fc;
    --success: #22c55e;
    --success-light: #062212;
    --warning: #f59e0b;
    --danger: #ef4444;
    --danger-light: #2d1616;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-on-primary: #ffffff;
    --border-color: #1d283c;
    --border-color-active: #3b82f6;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-premium: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
    --bg-header: rgba(9, 13, 22, 0.9);
    --bg-carousel-gradient: linear-gradient(90deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.85) 60%, rgba(9, 13, 22, 0) 100%);
    --bg-carousel-gradient-mobile: linear-gradient(180deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.8) 100%);
    --bg-footer: #05080e;
    --bg-footer-bottom: #010204;
    --text-footer: #f8fafc;
    --text-footer-muted: #64748b;
    --border-footer: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Adaptive Inline SVG Elements */
svg[stroke="#2563eb"], svg [stroke="#2563eb"] {
    stroke: var(--primary) !important;
}
svg[fill="#2563eb"], svg [fill="#2563eb"] {
    fill: var(--primary) !important;
}
svg[fill="#eff6ff"], svg [fill="#eff6ff"] {
    fill: var(--primary-light) !important;
}

/* Custom Elegant Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Card Common Elements */
.card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 24px;
    transition: var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-on-primary);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-primary:disabled {
    background-color: var(--text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: var(--bg-contrast-hover);
    color: var(--primary-hover);
}

.btn-full {
    width: 100%;
}
.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}
.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.btn-text:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ==========================================================================
   2. Header Component
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 72px;
    transition: transform 0.28s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    flex-shrink: 0;
}
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.logo-text span {
    color: var(--primary);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}
.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.nav-drawer-brand {
    display: none;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    position: relative;
    display: none;
}
.search-box input {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 12px 8px 36px;
    font-size: 14px;
    width: 200px;
    outline: none;
    transition: var(--transition);
}
.search-box input:focus {
    width: 250px;
    border-color: var(--primary);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}
.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.btn-support {
    background-color: var(--bg-contrast);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-support:hover {
    background-color: var(--bg-contrast-hover);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.menu-toggle:hover {
    background-color: var(--bg-contrast);
}
.menu-toggle span {
    width: 18px;
    height: 2.25px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Bottom App Navigation */
.bottom-menu-bar {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 450;
    width: calc(100vw - 24px);
    max-width: 520px;
    background-color: color-mix(in srgb, var(--bg-surface) 94%, transparent);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgb(0 0 0 / 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px;
    box-sizing: border-box;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

.bottom-menu-bar.bottom-menu-hidden {
    transform: translateX(-50%) translateY(110px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bottom-menu-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
}

.bottom-menu-item {
    min-width: 0;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: var(--transition);
}

.bottom-menu-item:hover,
.bottom-menu-item:focus-visible {
    background-color: var(--primary-light);
    color: var(--primary);
    outline: none;
}

.bottom-menu-item.active,
.bottom-menu-item[aria-pressed="true"] {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

.bottom-menu-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bottom-menu-item:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bottom-menu-item:disabled:hover {
    background: transparent;
    color: var(--text-muted);
}

.quick-login-overlay {
    position: fixed;
    inset: 0;
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgb(2 6 23 / 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.quick-login-overlay.active {
    display: flex;
}

.quick-login-card {
    width: min(100%, 360px);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 22px;
}

.quick-login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.quick-login-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.quick-login-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: var(--radius-full);
    background-color: var(--bg-contrast);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quick-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-login-form input {
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-main);
    color: var(--text-primary);
    padding: 0 14px;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.quick-login-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.18);
}

.quick-login-status {
    min-height: 18px;
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
}

/* Homepage WhatsApp Channel Popup */
.channel-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 800;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgb(2 6 23 / 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.channel-popup-overlay.active {
    display: flex;
}

body.channel-popup-open {
    overflow: hidden;
}

.channel-popup-card {
    position: relative;
    width: min(100%, 390px);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgb(0 0 0 / 0.28);
    padding: 30px 24px 24px;
    text-align: center;
    color: var(--text-primary);
}

.channel-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: var(--radius-full);
    background-color: var(--bg-contrast);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.channel-popup-close:hover,
.channel-popup-close:focus-visible {
    color: var(--text-primary);
    background-color: var(--bg-contrast-hover);
    outline: none;
}

.channel-popup-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: var(--radius-full);
    background-color: #ffffff;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgb(15 23 42 / 0.16);
}

.channel-popup-icon img {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
}

.channel-popup-eyebrow {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.channel-popup-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.channel-popup-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.channel-popup-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.channel-popup-join,
.channel-popup-later {
    min-height: 46px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.channel-popup-join {
    background-color: #25d366;
    color: #052e16;
    border: 1px solid #25d366;
}

.channel-popup-join:hover,
.channel-popup-join:focus-visible {
    background-color: #1fb85a;
    border-color: #1fb85a;
    outline: none;
}

.channel-popup-later {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.channel-popup-later:hover,
.channel-popup-later:focus-visible {
    color: var(--text-primary);
    background-color: var(--bg-contrast);
    outline: none;
}

/* ==========================================================================
   3. Carousel Promo Banner Section
   ========================================================================== */
.promo-carousel-section {
    padding: 24px 16px 12px 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: min(100%, 960px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Perfect 16:9 fluid aspect ratio matching banner1.jpg */
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-surface);
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 48px;
    background: var(--bg-carousel-gradient);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.carousel-content .badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.carousel-content .badge-success {
    background-color: var(--success-light);
    color: var(--success);
}

.carousel-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.carousel-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Arrows Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--bg-header);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.carousel-arrow:hover {
    background-color: var(--bg-surface);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }

/* Indicator Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 48px;
    z-index: 5;
    display: flex;
    gap: 8px;
}
.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}
.carousel-dots .dot.active {
    width: 24px;
    background-color: var(--primary);
}

/* ==========================================================================
   4. Ticker Live Transactions Ticker
   ========================================================================== */
.safety-banner {
    background-color: var(--bg-contrast);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 24px;
    width: 100%;
}

.safety-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.safety-shield {
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================================================
   5. Select Game Section (NEW)
   ========================================================================== */
.game-select-section {
    max-width: 1200px;
    margin: 32px auto 48px auto;
    padding: 0 24px;
    text-align: left;
}

.game-select-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.game-select-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.game-cards-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    max-width: 900px;
    margin: 0;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-35px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.game-item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: slideInFromLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#mlbbItem {
    animation-delay: 0.05s;
}
#bgmiItem {
    animation-delay: 0.15s;
}

.game-card {
    width: 140px;
    height: 140px;
    border: 2px solid var(--border-color);
    border-radius: 28px; /* iOS Squircle Mask rounded corners */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

#mlbbCard {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #4f46e5 100%);
    border-color: rgba(255, 255, 255, 0.1);
}
#bgmiCard {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #f97316 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.04);
}

#mlbbCard:hover {
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
    border-color: #60a5fa;
}
#bgmiCard:hover {
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.4);
    border-color: #ff7849;
}

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.game-card:hover .game-card-img {
    transform: scale(1.1);
}

.game-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.game-svg {
    color: #ffffff !important; /* Centered SVG inside squircle card is white */
    transition: var(--transition);
    width: 52px;
    height: 52px;
}
.game-card:hover .game-svg {
    transform: scale(1.1) rotate(5deg);
}

.game-item-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    text-align: center;
}
.game-item-container:hover .game-item-label {
    color: var(--primary);
}

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(22, 163, 74, 0.95);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ==========================================================================
   6. Progressive Disclosure Wrapper
   ========================================================================== */
.recharge-details-wrapper {
    max-height: 5000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1), opacity 0.5s ease;
    width: 100%;
}

.recharge-details-wrapper.collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    margin: 0;
}

/* ==========================================================================
   7. Recharge Wizard Layout (HTML Grid)
   ========================================================================== */
.main-content {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    padding: 0 24px;
}

.layout-container {
    display: grid;
    grid-template-columns: 1.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.recharge-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Step Header Layout */
.step-card {
    position: relative;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--text-on-primary);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.step-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   STEP 1: User & Zone ID Input
   ========================================================================== */
.id-input-group {
    display: flex;
    gap: 16px;
}

.input-wrapper {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.zone-id-wrapper {
    flex: 1;
    transition: var(--transition);
}

.input-wrapper label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.input-wrapper input {
    background-color: var(--bg-main);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    caret-color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 1;
}
.input-wrapper input:focus {
    border-color: var(--primary);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 4px rgb(37 99 235 / 0.1);
}

.error-msg {
    color: var(--danger);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    display: none;
}

/* ID Helper Drawer */
.id-helper-container {
    margin-top: 12px;
}
.id-helper-container .btn-text {
    font-size: 13px;
}

.id-guide-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    margin-top: 12px;
}
.id-guide-panel.open {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    border: 1px solid var(--border-color);
}

.guide-content {
    padding: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.guide-content p {
    margin-bottom: 12px;
}

.profile-card-mock {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 250px;
    box-shadow: var(--shadow-sm);
}
.profile-avatar-mock {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.mock-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 13px;
}
.mock-ids {
    font-size: 11px;
}
.highlight-id {
    color: var(--primary);
    font-weight: 700;
}
.highlight-zone {
    color: var(--secondary);
    font-weight: 700;
}

/* Account Verification States */
.account-verification-box {
    margin-top: 16px;
    display: none;
}

.verification-loader, .verification-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
}

.verification-loader {
    background-color: var(--bg-contrast);
    color: var(--primary);
}
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-light);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.verification-success {
    background-color: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

/* ==========================================================================
   STEP 2: Product Grid & Selection
   ========================================================================== */
.game-catalog {
    width: 100%;
}

.product-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.tab-btn:hover {
    color: var(--primary);
    background-color: var(--bg-contrast);
}
.tab-btn.active {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

.product-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.product-grid.active {
    display: grid;
}

#diamondsGrid {
    grid-template-columns: repeat(2, 1fr);
}

.product-card {
    background-color: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}
.product-card:hover {
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-card.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: var(--shadow-premium);
}

.product-card .card-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--text-on-primary);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}
.product-card .badge-premium {
    background-color: var(--success);
}

.product-icon {
    margin-bottom: 12px;
}

.product-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.product-amount .unit {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: -2px;
}

.product-bonus {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background-color: var(--success-light);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin: 8px 0;
}

.product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.selection-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background-color: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}
.product-card.selected .selection-indicator {
    display: flex;
}

/* Wide Cards for Passes */
.pass-card {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 20px 24px;
}
.pass-card .product-details {
    flex-grow: 1;
    margin-left: 20px;
}
.pass-card .product-amount {
    font-size: 18px;
}
.pass-card .product-bonus {
    margin: 4px 0 0 0;
    display: inline-block;
}
.pass-card .product-price {
    font-size: 20px;
}

/* ==========================================================================
   STEP 3: Payment Lists
   ========================================================================== */
.payment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-card {
    background-color: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.payment-card:hover {
    border-color: var(--primary-hover);
    background-color: var(--bg-main);
}
.payment-card.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.brand-logo-mock {
    width: 80px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.brand-logo-mock.kpay { background-color: #0c4a6e; color: #38bdf8; }
.brand-logo-mock.wave { background-color: #991b1b; color: #fecdd3; }
.brand-logo-mock.razer { background-color: #166534; color: #86efac; }
.brand-logo-mock.card-pay { background-color: #334155; color: #cbd5e1; }

.payment-details {
    flex-grow: 1;
}

.payment-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}
.fee-badge {
    background-color: var(--success-light);
    color: var(--success);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    display: inline-block;
}

.payment-description {
    font-size: 12px;
    color: var(--text-muted);
}

.payment-select-indicator {
    display: flex;
    align-items: center;
}
.outer-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.payment-card.selected .outer-circle {
    border-color: var(--primary);
}
.inner-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}
.payment-card.selected .inner-circle {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   8. Sidebar checkout panel & Utilities
   ========================================================================== */
.recharge-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sticky-panel {
    position: sticky;
    top: 96px;
}

/* Summary Card Layout */
.summary-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 16px 0;
}

.summary-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.summary-row .label {
    color: var(--text-muted);
}
.summary-row .value {
    font-weight: 700;
    color: var(--text-primary);
}

.total-row {
    font-size: 16px;
    margin-top: 8px;
}
.total-row .label {
    font-weight: 800;
    color: var(--text-primary);
}
.total-row .value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.summary-warning {
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin: 20px 0;
    font-size: 12px;
    line-height: 1.4;
    color: var(--primary-hover);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
}

.btn-checkout {
    height: 52px;
    font-size: 16px;
}

.security-assurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 14px;
}

/* Mini Interactive Tools inside cards */
.utility-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.utility-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.utility-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: -2px;
}

.utility-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Calculator specific styles */
.calc-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.calc-row label {
    font-size: 12px;
    font-weight: 700;
}
.calc-row select, .calc-row input {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}
.calc-row select:focus, .calc-row input:focus {
    border-color: var(--primary);
    background-color: var(--bg-surface);
}

.calc-result-box {
    background-color: var(--bg-contrast);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    border: 1px dashed rgba(37, 99, 235, 0.2);
}
.calc-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.calc-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 2px;
}

/* Tracker specific styles */
.tracker-input-box {
    display: flex;
    gap: 8px;
}
.tracker-input-box input {
    flex-grow: 1;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    transition: var(--transition);
}
.tracker-input-box input:focus {
    border-color: var(--primary);
    background-color: var(--bg-surface);
}

.tracker-status-box {
    background-color: var(--bg-contrast);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border-color);
    display: none;
    flex-direction: column;
    gap: 16px;
}

.status-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}
.status-tag {
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.status-success {
    background-color: var(--success-light);
    color: var(--success);
}

/* Horizontal stepper layout */
.progress-line-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
}
.progress-line-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}
.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: 2px solid var(--bg-surface);
    transition: var(--transition);
}
.step-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
}

.progress-step.done .step-dot {
    background-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.15);
}
.progress-step.done .step-label {
    color: var(--primary);
}

/* ==========================================================================
   9. FAQ Component
   ========================================================================== */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    scroll-margin-top: 88px;
}
.section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
}
.faq-section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-main);
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-trigger .chevron {
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-surface);
}

.faq-answer p {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Accordion open state details */
.faq-item.open .faq-answer {
    max-height: 300px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    border-top: 1px solid var(--border-color);
}
.faq-item.open .faq-trigger .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   10. Footer Layout
   ========================================================================== */
.footer {
    background-color: var(--bg-footer);
    color: var(--text-footer);
    padding: 60px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo-footer .logo-text {
    color: var(--text-footer);
}

.footer-about {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.payment-partners-strip {
    margin-top: 24px;
}
.partner-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.partner-tag {
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: var(--text-primary);
    min-width: 88px;
    height: 38px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgb(15 23 42 / 0.12);
}

.partner-logo-icon {
    display: block;
    max-width: 100%;
    max-height: 22px;
    width: auto;
    height: auto;
}

/* Footer Link Columns */
.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-footer);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-footer-muted);
}
.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-links a.active {
    color: var(--text-footer);
    font-weight: 700;
}

.footer-bottom {
    background-color: var(--bg-footer-bottom);
    padding: 30px 0 126px;
    border-top: 1px solid var(--border-footer);
}
.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.copyright {
    font-size: 13px;
    color: var(--text-muted);
}
.disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
}

.disclaimer a {
    color: var(--text-footer);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
}

.disclaimer a:hover,
.disclaimer a:focus-visible {
    color: var(--primary);
}

/* ==========================================================================
   11. Legal Pages
   ========================================================================== */
.legal-main {
    padding: 32px 24px 0;
}

.legal-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.legal-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 32px;
}

.legal-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.legal-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
}

.legal-intro {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.legal-section + .legal-section {
    margin-top: 24px;
}

.legal-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.legal-section p,
.legal-section li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-list {
    padding-left: 20px;
}

.legal-list li + li {
    margin-top: 8px;
}

.auth-page {
    min-height: calc(100vh - 72px);
    padding: 32px 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-shell {
    width: min(100%, 420px);
}

.auth-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: var(--shadow-premium);
    padding: 28px;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background-color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgb(37 99 235 / 0.12);
    margin-bottom: 14px;
}

.auth-card-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.auth-card-subtitle {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-login-btn {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-login-btn:hover,
.social-login-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    outline: none;
}

.social-login-btn svg {
    flex-shrink: 0;
}

.social-login-btn.google {
    background-color: #ffffff;
}

.social-login-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #1559c4);
    border-color: transparent;
    color: #ffffff;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-form label {
    font-size: 13px;
    font-weight: 700;
}

.auth-form input {
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-main);
    color: var(--text-primary);
    padding: 0 14px;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.16);
}

.auth-helper-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
    font-size: 12px;
    color: var(--text-muted);
}

.auth-helper-row a {
    color: var(--primary);
    font-weight: 700;
}

.auth-status {
    min-height: 18px;
    margin-top: 8px;
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.hidden {
    display: none !important;
}

.auth-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgb(67 86 140 / 0.18), transparent 28%),
        linear-gradient(180deg, #171c26 0%, #1c2340 100%);
}

.auth-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
}

.auth-panel {
    width: min(100%, 448px);
    background: #1b222d;
    border: 1px solid rgba(86, 112, 156, 0.22);
    border-radius: 36px;
    box-shadow: 0 24px 60px rgb(5 10 24 / 0.38);
    padding: 28px 40px 34px;
    color: #e5e7eb;
}

.auth-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.auth-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(96, 124, 172, 0.28);
    background: #2b3647;
    color: #61a4ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.auth-icon-btn:hover {
    background: #33425a;
}

.auth-brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.auth-brand-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #f3f4f6;
}

.auth-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: #334159;
    border-radius: 16px;
    padding: 4px;
}

.auth-switch-btn {
    min-height: 44px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #aab4c8;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.auth-switch-btn.active {
    background: #51617e;
    color: #63a5ff;
}

.auth-panel-title {
    margin: 22px 0 18px;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #f3f4f6;
}

.auth-form-dark {
    gap: 16px;
}

.auth-form-dark label {
    font-size: 14px;
    font-weight: 500;
    color: #e5e7eb;
}

.auth-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-input-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid rgba(104, 130, 168, 0.54);
    border-radius: 14px;
    background: #273244;
    color: #8ca3c7;
    box-shadow: inset 0 0 0 1px rgba(83, 106, 143, 0.18);
}

.auth-input-shell:focus-within {
    border-color: #4b92ff;
    box-shadow: 0 0 0 3px rgb(75 146 255 / 0.18);
}

.auth-input-shell input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    background: transparent;
    color: #f3f4f6;
    padding: 0;
    font: inherit;
    font-size: 14px;
    outline: none;
}

.auth-input-shell input::placeholder {
    color: #8c98ad;
}

.auth-eye-btn {
    border: 0;
    background: transparent;
    color: #92a0b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.auth-primary-btn,
.auth-secondary-btn {
    min-height: 50px;
    border-radius: 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.auth-primary-btn {
    border: 0;
    background: linear-gradient(135deg, #3146c6, #2b3693);
    color: #f8fafc;
}

.auth-primary-btn:hover {
    filter: brightness(1.05);
}

.auth-secondary-btn {
    border: 1px solid rgba(104, 130, 168, 0.54);
    background: #273244;
    color: #e5e7eb;
}

.auth-social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9aa6bc;
    font-size: 12px;
    justify-content: center;
}

.auth-social-divider::before,
.auth-social-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid rgba(108, 129, 167, 0.24);
}

.auth-social-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.auth-social-pill {
    min-height: 48px;
    border-radius: 14px;
}

.auth-status-dark {
    color: #7cc48d;
}

:root[data-theme="light"] .auth-body {
    background:
        radial-gradient(circle at top left, rgb(147 197 253 / 0.28), transparent 30%),
        linear-gradient(180deg, #dbe4f4 0%, #eef3fb 100%);
}

:root[data-theme="light"] .auth-panel {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow: 0 24px 60px rgb(15 23 42 / 0.16);
    color: #0f172a;
}

:root[data-theme="light"] .auth-icon-btn,
:root[data-theme="light"] .auth-switcher,
:root[data-theme="light"] .auth-input-shell,
:root[data-theme="light"] .auth-secondary-btn {
    background: #eef3fb;
    color: #2563eb;
}

:root[data-theme="light"] .auth-switch-btn,
:root[data-theme="light"] .auth-social-divider {
    color: #64748b;
}

:root[data-theme="light"] .auth-switch-btn.active {
    background: #dce7fb;
    color: #2563eb;
}

:root[data-theme="light"] .auth-panel-title,
:root[data-theme="light"] .auth-brand-text,
:root[data-theme="light"] .auth-form-dark label,
:root[data-theme="light"] .auth-input-shell input,
:root[data-theme="light"] .auth-secondary-btn {
    color: #0f172a;
}

:root[data-theme="light"] .auth-input-shell input::placeholder,
:root[data-theme="light"] .auth-card-subtitle {
    color: #64748b;
}

/* ==========================================================================
   12. Checkout Modal Window
   ========================================================================== */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.checkout-modal-overlay.active {
    display: flex;
}

.checkout-modal-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    width: 100%;
    max-width: 480px;
    padding: 32px;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}
.modal-close:hover {
    color: var(--text-primary);
}

.modal-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.modal-state.active {
    display: flex;
}

/* Loading state spinner */
.payment-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--primary-light);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

.modal-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.modal-message {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Success Receipt Custom Layout */
.success-icon-badge {
    width: 64px;
    height: 64px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgb(22 163 74 / 0.2);
}
.success-heading {
    color: var(--success);
}

.receipt-box {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
    padding: 20px;
    width: 100%;
    text-align: left;
    margin-bottom: 24px;
}
.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.receipt-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
}
.receipt-date {
    font-size: 11px;
    color: var(--text-muted);
}
.receipt-divider {
    height: 1px;
    border-bottom: 1px dashed var(--border-color);
    margin: 12px 0;
}

.receipt-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.receipt-row .r-label {
    color: var(--text-muted);
    font-weight: 500;
}
.receipt-row .r-value {
    font-weight: 700;
    color: var(--text-primary);
}
.status-success-text {
    color: var(--success) !important;
    font-weight: 800 !important;
}

.modal-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}
.modal-actions .btn {
    flex: 1;
}

/* ==========================================================================
   12. Media Queries - Fully Responsive
   ========================================================================== */

/* Tablet Displays (max-width: 992px) */
@media (max-width: 992px) {
    .layout-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sticky-panel {
        position: static;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Small Screens (max-width: 768px) */
@media (max-width: 768px) {
    .main-content {
        padding: 0 16px;
        margin: 16px auto 30px auto;
    }
    
    .card {
        padding: 16px;
    }
    
    .header-actions .search-box {
        display: none !important;
    }
    
    .step-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .step-title {
        font-size: 16px;
    }
    .step-desc {
        font-size: 12px;
    }

    .header-container {
        justify-content: flex-start;
        gap: 14px;
        padding: 0 16px;
    }

    .header-actions {
        gap: 0;
        order: -1;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        position: fixed;
        top: 0;
        left: 0;
        width: min(82vw, 320px);
        height: 100dvh;
        padding: 92px 20px 24px;
        background-color: color-mix(in srgb, var(--bg-surface) 96%, var(--bg-main));
        border-right: 1px solid var(--border-color);
        box-shadow: 0 28px 48px rgb(15 23 42 / 0.22);
        transform: translateX(-110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
        z-index: 220;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.nav-drawer-open {
        overflow: hidden;
    }

    body.nav-drawer-open .header {
        z-index: 500;
    }

    body.nav-drawer-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background-color: rgb(2 6 23 / 0.44);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 210;
    }

    body.nav-drawer-open .bottom-menu-bar {
        transform: translateX(-50%) translateY(110px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-drawer-brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        padding: 0 4px 10px;
        border-bottom: 1px solid color-mix(in srgb, var(--border-color) 82%, transparent);
    }

    .nav-drawer-brand .logo-text {
        font-size: 26px;
        font-weight: 800;
        letter-spacing: -0.04em;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0 16px;
        border-radius: 16px;
        background-color: color-mix(in srgb, var(--bg-contrast) 72%, var(--bg-surface));
        border: 1px solid color-mix(in srgb, var(--border-color) 88%, transparent);
        font-size: 16px;
        font-weight: 700;
        color: var(--text-primary);
        box-shadow: var(--shadow-sm);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--primary-light);
        color: var(--primary);
    }
    .menu-toggle {
        display: flex;
    }

    .home-page .header-container {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        align-items: center;
        justify-content: initial;
        gap: 10px;
        height: 100%;
    }

    .home-page .logo {
        grid-row: 1;
        justify-self: center;
        min-width: 0;
    }

    .home-page .logo-icon {
        width: 28px;
        height: 28px;
    }

    .home-page .logo-text {
        font-size: 20px;
        white-space: nowrap;
    }

    .home-page .header-actions {
        display: contents;
    }

    .home-page .nav-menu {
        grid-column: initial;
        grid-row: initial;
    }

    .home-page .menu-toggle {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        width: 38px;
        height: 38px;
    }

    .home-page .btn-support {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
        gap: 6px;
    }

    .home-page .btn-support svg {
        width: 16px;
        height: 16px;
    }

    .header.header-hidden {
        transform: translateY(-100%);
    }
    
    .carousel-container {
        width: 100%;
        border-radius: var(--radius-md);
    }
    .carousel-content {
        padding: 24px;
        max-width: 80%;
    }
    .carousel-title {
        font-size: 24px;
    }
    .carousel-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .carousel-dots {
        left: 24px;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .carousel-arrow.prev { left: 12px; }
    .carousel-arrow.next { right: 12px; }
    
    .game-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        max-width: 100%;
    }

    .game-item-container {
        width: 100%;
        gap: 8px;
    }

    .game-card {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 22px;
    }

    .game-item-label {
        font-size: 11px;
        text-align: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    #diamondsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pass-card {
        grid-column: span 3;
        padding: 16px;
    }
    .pass-card .product-details {
        margin-left: 12px;
    }
    .pass-card .product-amount {
        font-size: 14px;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer {
        padding: 40px 0 0 0;
    }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .bottom-menu-bar {
        bottom: 10px;
        width: calc(100vw - 16px);
        border-radius: 16px;
        padding: 6px;
    }

    .bottom-menu-list {
        gap: 4px;
    }

    .bottom-menu-item {
        height: 46px;
        border-radius: 10px;
        font-size: 9px;
    }

    .bottom-menu-item svg {
        width: 17px;
        height: 17px;
    }

    .partner-logos {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .partner-tag {
        min-width: 0;
        width: 100%;
        height: 34px;
        padding: 4px 6px;
    }

    .partner-logo-icon {
        max-height: 18px;
    }

    .game-select-section {
        padding: 0 12px;
    }

    .game-cards-grid {
        gap: 10px;
    }

    .game-card {
        border-radius: 18px;
    }

    .game-item-label {
        font-size: 10px;
    }

    .main-content {
        padding: 0 12px;
    }

    .legal-main {
        padding: 24px 12px 0;
    }

    .legal-card {
        padding: 20px;
    }

    .legal-title {
        font-size: 26px;
    }

    .auth-screen {
        padding: 16px 12px;
    }

    .auth-panel {
        width: 100%;
        padding: 22px 18px 24px;
        border-radius: 28px;
    }

    .auth-panel-title {
        font-size: 22px;
    }

    .auth-brand-text {
        font-size: 22px;
    }
    
    .card {
        padding: 14px;
        border-radius: var(--radius-md);
    }

    .payment-card {
        padding: 12px 14px;
        gap: 12px;
    }
    .brand-logo-mock {
        width: 70px;
        height: 32px;
        font-size: 11px;
    }
    .payment-name {
        font-size: 13px;
    }
    .payment-description {
        font-size: 11px;
    }

    .summary-title {
        font-size: 16px;
    }
    .summary-table .summary-row {
        font-size: 13px;
    }
    
    .checkout-modal-card {
        padding: 20px;
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }

    .id-input-group {
        flex-direction: column;
        gap: 12px;
    }
    .input-wrapper, .zone-id-wrapper {
        flex: auto;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    #diamondsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card {
        padding: 8px 4px;
        border-radius: var(--radius-sm);
    }
    
    .product-icon {
        margin-bottom: 4px;
    }
    .product-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .product-amount {
        font-size: 11px;
        line-height: 1.1;
    }
    .product-amount .unit {
        font-size: 8px;
        margin-top: 1px;
    }
    
    .product-bonus {
        font-size: 8px;
        padding: 1px 4px;
        margin: 4px 0;
        white-space: nowrap;
    }
    
    .product-price {
        font-size: 11px;
        font-weight: 800;
    }
    
    .product-card .card-badge {
        font-size: 7px;
        padding: 1px 4px;
        top: -6px;
        white-space: nowrap;
    }
    
    .selection-indicator {
        width: 12px;
        height: 12px;
        top: 3px;
        right: 3px;
    }
    .selection-indicator svg {
        width: 6px;
        height: 6px;
    }
    
    .pass-card {
        grid-column: span 3;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 10px 12px;
        gap: 8px;
    }
    .pass-card .product-details {
        margin-left: 8px;
    }
    .pass-card .product-amount {
        font-size: 11px;
    }
    .pass-card .product-bonus {
        font-size: 8px;
        margin: 2px 0 0 0;
    }
    .pass-card .product-price {
        font-size: 12px;
    }
    
    .btn-support {
        display: none;
    }
    
    .carousel-content {
        max-width: 100%;
        background: var(--bg-carousel-gradient-mobile);
    }
}
