/*
 * 090bet - Modern Casino Platform Styles
 * Optimized for Google Core Web Vitals
 * Mobile-First, Performance-Oriented Design
 */

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette - Modern & Professional */
    --primary-color: #00d4aa;
    --primary-dark: #00b890;
    --primary-light: #33deb8;
    --secondary-color: #6366f1;
    --accent-color: #fbbf24;
    
    /* Neutrals - Dark Theme */
    --bg-primary: #0a0e27;
    --bg-secondary: #141b3a;
    --bg-card: #1a2442;
    --bg-card-hover: #212d52;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Borders & Dividers */
    --border-color: #2d3a5f;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(0, 212, 170, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

body.modal_cab1 {
    overflow: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-black);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

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

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

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

/* ============================================
   Container & Layout
   ============================================ */
.pattern_bright_3037 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .pattern_bright_3037 {
        padding: 0 var(--spacing-sm);
    }
}

/* ============================================
   Header & Navigation
   ============================================ */
.bottom-6537 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    width: 100%;
    overflow: visible;
}

.bottom-6537.hovered_26de {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.bottom-6537.tertiary_south_1a84 {
    transform: translateY(0);
}

/* Prevent content from being covered by the fixed header */
body {
    padding-top: var(--header-height);
}

/* Mobile: slightly smaller header height */
@media (max-width: 767px) {
    :root { --header-height: 72px; }
}

.warm-8e87 {
    padding: 0;
}

.simple_21ce {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-md);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Redesign: prevent grid overflow */
.simple_21ce > * {
    min-width: 0;
}

.filter-clean-9995 {
    grid-template-columns: auto 1fr auto;
}

.hero_huge_344c {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    line-height: 1.05;
    position: relative;
    z-index: 20;
}

.box-small-bf2d {
    font-size: 24px;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(0, 212, 170, 0.25);
}

.last-33d8 {
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

@media (min-width: 768px) {
    .box-small-bf2d { font-size: 28px; }
    .last-33d8 { font-size: 11px; }
}

/* Scroll container for desktop nav (prevents clipping on mid-width desktops) */
.large_2989 {
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.large_2989::-webkit-scrollbar { display: none; }

/* Desktop (>=1024px): dropdown top bar */
@media (min-width: 1024px) {
    /* Allow dropdown menus to render outside the nav area */
    .large_2989 {
        overflow: visible;
    }

    .simple_21ce {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        justify-content: initial;
        gap: 1rem;
    }

    .tooltip-west-a015 {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

    .grid_8cb5 {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: nowrap;
        flex: 0 0 auto;
        position: relative;
        z-index: 20;
    }

    .grid-hot-b1f4 { display: none !important; }
}

/* (Old) logo-section/text-logo kept for backward compatibility if reused elsewhere */

.liquid-6bb5:hover .mask_9bfe {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

.mask_9bfe {
    font-size: 22px;
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
    transition: all var(--transition-base);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brown-3320 {
    font-size: 9px;
    font-weight: var(--font-weight-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color var(--transition-base);
}

.liquid-6bb5:hover .brown-3320 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .mask_9bfe {
        font-size: 28px;
    }
    
    .brown-3320 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .mask_9bfe {
        font-size: 32px;
    }
    
    .brown-3320 {
        font-size: 12px;
    }
}

.mask-8127 {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.mask-8127 li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .mask-8127 {
        gap: 0.375rem;
    }
}

.mask-8127 a,
.large-7cea {
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    padding: 0.625rem 0.875rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
}

/* Buttons styled like links for desktop dropdown toggles */
.mask-8127 button.large-7cea {
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .mask-8127 a,
    .large-7cea {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.mask-8127 a:hover,
.large-7cea:hover,
.simple-7101.out_fff8:hover > .large-7cea {
    color: var(--text-primary);
    background: rgba(0, 212, 170, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.2);
}

.mask-8127 a:active,
.large-7cea:active {
    transform: translateY(0);
}

/* Dropdown Menu Styles (kept for mobile drawer; desktop top bar no longer uses dropdowns) */
.simple-7101 {
    position: relative;
}

.simple-7101.out_fff8 {
    position: relative;
}

.large-7cea {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.search-15cd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    border-radius: 10px;
    margin: 0 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 212, 170, 0.4);
    transition: all var(--transition-base);
}

.nav-8286 {
    font-size: 0.65rem;
    transition: transform var(--transition-base);
    opacity: 0.7;
    margin-left: 0.125rem;
}

.simple-7101.out_fff8:hover .nav-8286 {
    transform: rotate(180deg);
    opacity: 1;
}

.simple-7101.out_fff8:focus-within .nav-8286,
.simple-7101.out_fff8.primary-short-78bc .nav-8286 {
    transform: rotate(180deg);
    opacity: 1;
}

.simple-7101.out_fff8:hover .search-15cd {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

.top_588d {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
}

/* Dropdown arrow decoration */
.top_588d::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.simple-7101.out_fff8:hover .top_588d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-7101.out_fff8:focus-within .top_588d,
.simple-7101.out_fff8.primary-short-78bc .top_588d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tiny-7308 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
    border-bottom: 1px solid rgba(45, 58, 95, 0.3);
    position: relative;
}

.tiny-7308:last-child {
    border-bottom: none;
}

.tiny-7308:hover {
    background: linear-gradient(90deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.05) 100%);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.tiny-7308::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.tiny-7308:hover::before {
    opacity: 1;
}

.tiny-7308:first-child {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.tiny-7308:last-child {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Keep dropdown open when hovering over it */
.simple-7101.out_fff8 .top_588d:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.simple-7101.out_fff8:hover .tiny-7308 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.simple-7101.out_fff8:hover .tiny-7308:nth-child(1) { animation-delay: 0.05s; }
.simple-7101.out_fff8:hover .tiny-7308:nth-child(2) { animation-delay: 0.1s; }
.simple-7101.out_fff8:hover .tiny-7308:nth-child(3) { animation-delay: 0.15s; }
.simple-7101.out_fff8:hover .tiny-7308:nth-child(4) { animation-delay: 0.2s; }
.simple-7101.out_fff8:hover .tiny-7308:nth-child(5) { animation-delay: 0.25s; }
.simple-7101.out_fff8:hover .tiny-7308:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Navigation Toggle Logic */
/* Hide desktop nav on mobile and tablet - show hamburger menu */
@media (max-width: 1023px) {
    .tooltip-west-a015 {
        display: none !important;
    }
    
    .grid-hot-b1f4 { display: inline-flex !important; }
}

/* Show desktop nav on large screens - hide hamburger menu */
@media (min-width: 1024px) {
    .tooltip-west-a015 {
        display: flex !important;
    }

    .grid-hot-b1f4 { display: none !important; }
}

.backdrop_first_cd46 {
    display: none;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

.backdrop_first_cd46 a {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .backdrop_first_cd46 {
        display: flex;
    }
}

/* 移动端专属按钮样式 */
.first_f440 {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: rgba(26, 36, 66, 0.6);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.first_f440:hover {
    transform: translateX(-50%) translateY(-2px);
    background: rgba(26, 36, 66, 0.8);
    border-color: var(--primary-light);
    box-shadow: 0 0 25px rgba(0, 212, 170, 0.5);
    color: var(--text-primary);
}

.first_f440:active {
    transform: translateX(-50%) scale(0.95);
    background: rgba(26, 36, 66, 0.9);
}

/* 只在移动端和平板显示 */
@media (max-width: 1023px) {
    .first_f440 {
        display: inline-flex;
    }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
    .first_f440 {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* 电脑端完全隐藏 */
@media (min-width: 1024px) {
    .first_f440 {
        display: none !important;
    }
}


/* New Toggle Button */
.grid-hot-b1f4 {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(26, 36, 66, 0.6);
    border: 1px solid rgba(0, 212, 170, 0.35);
    cursor: pointer;
    padding: 0.625rem 0.75rem;
    border-radius: 999px;
    z-index: 1002;
    position: relative;
}

.last-75eb {
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile: transform hamburger into X when drawer is open */
@media (max-width: 767px) {
    .grid-hot-b1f4[aria-expanded="true"] .last-75eb:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .grid-hot-b1f4[aria-expanded="true"] .last-75eb:nth-child(2) {
        opacity: 0;
    }
    .grid-hot-b1f4[aria-expanded="true"] .last-75eb:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid-hot-b1f4 {
        flex-direction: row;
        gap: 0.625rem;
    }
    .grid-hot-b1f4::after {
        content: 'Menu';
        color: var(--text-secondary);
        font-weight: var(--font-weight-bold);
        font-size: 0.9375rem;
        letter-spacing: 0.3px;
        line-height: 1;
    }
    .last-75eb {
        width: 18px;
    }
}


/* Medium desktop: compact spacing */
@media (min-width: 1401px) and (max-width: 1600px) {
    .simple_21ce {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .mask-8127 {
        gap: 0.375rem;
    }

    .mask-8127 a,
    .large-7cea {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .nav-8286 {
        font-size: 0.6rem;
    }
    
    .top_588d {
        min-width: 190px;
    }
    
    .tiny-7308 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .backdrop_first_cd46 {
        gap: 0.625rem;
    }
    
    .backdrop_first_cd46 .up_cc2a,
    .backdrop_first_cd46 .section_3aff {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .simple_21ce {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .mask-8127 {
        gap: 0.625rem;
    }
    
    .mask-8127 a,
    .large-7cea {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .backdrop_first_cd46 {
        gap: 0.875rem;
    }
    
    .backdrop_first_cd46 .up_cc2a,
    .backdrop_first_cd46 .section_3aff {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .top_588d {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .simple_21ce {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .mask-8127 {
        gap: 0.875rem;
    }
    
    .mask-8127 a,
    .large-7cea {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .backdrop_first_cd46 {
        gap: 1rem;
    }
    
    .backdrop_first_cd46 .up_cc2a,
    .backdrop_first_cd46 .section_3aff {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .top_588d {
        min-width: 220px;
    }
    
    .tiny-7308 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Drawer Navigation (Mobile/Tablet)
   ============================================ */

.video_new_dbdc {
    position: fixed;
    inset: 0;
    z-index: 1200;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video_new_dbdc.primary-short-78bc {
    visibility: visible;
    opacity: 1;
}

.avatar_tall_6545 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
}

.widget_fast_7bdd {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 1.5rem));
    max-height: calc(100vh - 1.5rem);
    overflow: hidden;
    background: rgba(10, 14, 39, 0.96);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
}

.image_d97d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0.875rem;
    border-bottom: 1px solid rgba(0, 212, 170, 0.25);
}

.heading_e210 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.45);
}

.icon-4466 {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.35);
    background: rgba(26, 36, 66, 0.65);
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}
.icon-4466:hover { transform: translateY(-1px); background: rgba(33, 45, 82, 0.75); }

.next_1464 {
    padding: 0.875rem;
    overflow-y: auto;
}

.layout-tiny-44e8 {
    background: linear-gradient(135deg, rgba(26, 36, 66, 0.75) 0%, rgba(33, 45, 82, 0.6) 100%);
    border: 1px solid rgba(0, 212, 170, 0.22);
    border-radius: 14px;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
}

.layout-tiny-44e8 h4 {
    margin: 0 0 0.625rem;
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.layout-tiny-44e8 a {
    display: block;
    padding: 0.55rem 0.625rem;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.layout-tiny-44e8 a:hover {
    background: rgba(0, 212, 170, 0.12);
    color: var(--text-primary);
    transform: translateX(2px);
}

.over-9be1 {
    display: flex;
    gap: 0.5rem;
    padding: 0.875rem;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    background: rgba(10, 14, 39, 0.7);
}

.over-9be1 .huge_abfa {
    min-width: 0;
}

/* Drawer only on <= 1023px (toggle exists); keep it hidden on desktop */
@media (min-width: 1024px) {
    .video_new_dbdc { display: none !important; }
}

/* ============================================
   Mobile Navigation - Modern Grid Style
   ============================================ */

/* Overlay Background */
.smooth_f5fc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.smooth_f5fc.fn-active-31de {
    visibility: visible;
    opacity: 1;
}

.frame-orange-a4a4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

/* Content Container */
.advanced-a602 {
    position: absolute;
    top: 2.5%;
    left: 50%;
    transform: translate(-50%, 0) scale(0.9);
    width: 95%;
    max-width: 400px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 0.875rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.smooth_f5fc.fn-active-31de .advanced-a602 {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
}

/* Desktop-only styling for the drawer: turn it into a compact dropdown panel */
@media (min-width: 768px) {
    .smooth_f5fc {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .frame-orange-a4a4 {
        display: none;
    }

    .advanced-a602 {
        top: 0.75rem;
        left: auto;
        right: var(--spacing-md);
        transform: translateY(-8px);
        width: min(860px, calc(100% - (var(--spacing-md) * 2)));
        max-width: 860px;
        max-height: calc(100vh - var(--header-height) - 1.25rem);
        opacity: 0;
        padding: 1rem;
        border-radius: 16px;
    }

    .smooth_f5fc.fn-active-31de .advanced-a602 {
        transform: translateY(0);
        opacity: 1;
    }

    /* Desktop menu: show list-style grouped menu, hide mobile card grid */
    .video_fafe {
        display: none !important;
    }

    .border-focused-b3e5 {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(180px, 1fr));
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .under_f27b {
        background: linear-gradient(135deg, rgba(26, 36, 66, 0.75) 0%, rgba(33, 45, 82, 0.6) 100%);
        border: 1px solid rgba(0, 212, 170, 0.25);
        border-radius: 14px;
        padding: 0.875rem 0.875rem 0.75rem;
    }

    .under_f27b h4 {
        margin: 0 0 0.625rem;
        font-size: 0.875rem;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-color);
    }

    .under_f27b a {
        display: block;
        padding: 0.5rem 0.625rem;
        border-radius: 10px;
        color: var(--text-secondary);
        font-weight: 700;
        font-size: 0.9375rem;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .under_f27b a:hover {
        background: rgba(0, 212, 170, 0.12);
        color: var(--text-primary);
        transform: translateX(2px);
    }

    /* Desktop: simplify dropdown header area */
    .hover_fd4f {
        display: none;
    }

    .active_plasma_9422 {
        display: none;
    }

    .huge_abfa {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 0.75rem 1rem;
    }
}

/* Mobile-only: hide desktop-only menu */
@media (max-width: 767px) {
    .border-focused-b3e5 {
        display: none;
    }
}

/* Header */
.hover_fd4f {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.625rem 0.5rem 0.75rem;
    margin-bottom: 0.875rem;
    border-bottom: 2px solid rgba(0, 212, 170, 0.3);
}

.hover_fd4f h3 {
    color: #00d4aa;
    font-size: 1.125rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.5);
}

/* Menu Grid */
.video_fafe {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.media_be8a {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.smooth_f5fc.fn-active-31de .media_be8a:nth-child(1) {
    animation-delay: 0.05s;
}

.smooth_f5fc.fn-active-31de .media_be8a:nth-child(2) {
    animation-delay: 0.1s;
}

.smooth_f5fc.fn-active-31de .media_be8a:nth-child(3) {
    animation-delay: 0.15s;
}

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

.warm-4c32 {
    color: #00d4aa;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
    opacity: 0.9;
}

/* Menu Cards Grid */
.slider-3ab3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.hidden-red-911a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 0.5rem;
    background: linear-gradient(135deg, rgba(26, 36, 66, 0.9) 0%, rgba(33, 45, 82, 0.9) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 70px;
}

.hidden-red-911a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hidden-red-911a:hover::before,
.hidden-red-911a:active::before {
    opacity: 1;
}

.hidden-red-911a:hover,
.hidden-red-911a:active {
    transform: translateY(-4px);
    border-color: #00d4aa;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 212, 170, 0.3);
}

.secondary_liquid_6ef7 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.summary-dynamic-1440 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.hidden-red-911a:hover .summary-dynamic-1440,
.hidden-red-911a:active .summary-dynamic-1440 {
    color: #00d4aa;
}

/* Quick Actions */
.active_plasma_9422 {
    display: flex;
    gap: 0.5rem;
    padding: 0.875rem 0.5rem 0.5rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

.huge_abfa {
    flex: 1;
    padding: 0.75rem 0.625rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.huge_abfa.fn-primary-31de {
    background: linear-gradient(135deg, #00d4aa 0%, #00b890 100%);
    color: #0a0e27;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.huge_abfa.fn-primary-31de:hover,
.huge_abfa.fn-primary-31de:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.5);
}

.huge_abfa.fn-secondary-31de {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.huge_abfa.fn-secondary-31de:hover,
.huge_abfa.fn-secondary-31de:active {
    background: rgba(0, 212, 170, 0.1);
}

/* Scrollbar for Mobile Nav */
.advanced-a602::-webkit-scrollbar {
    width: 6px;
}

.advanced-a602::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.advanced-a602::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.5);
    border-radius: 3px;
}

.advanced-a602::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.7);
}

/* Responsive Adjustments */
@media (min-width: 375px) {
    .hidden-red-911a {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .secondary_liquid_6ef7 {
        font-size: 1.875rem;
    }
    
    .summary-dynamic-1440 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .advanced-a602 {
        padding: 1rem;
    }
    
    .hover_fd4f {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .video_fafe {
        gap: 1rem;
    }
    
    .hidden-red-911a {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .secondary_liquid_6ef7 {
        font-size: 2rem;
    }
    
    .summary-dynamic-1440 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .advanced-a602 {
        padding: 1.25rem;
    }
    
    .hover_fd4f {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hover_fd4f h3 {
        font-size: 1.25rem;
    }
    
    .video_fafe {
        gap: 1.25rem;
    }
    
    .warm-4c32 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .hidden-red-911a {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .secondary_liquid_6ef7 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .summary-dynamic-1440 {
        font-size: 0.9375rem;
    }
    
    .huge_abfa {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.up_cc2a,
.section_3aff,
.item_black_3959,
.heading_82a4,
.video_hovered_bcf0,
.in-c3bf,
.footer-orange-3e22 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-bold);
    font-size: 0.9375rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .up_cc2a,
    .section_3aff,
    .item_black_3959 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.up_cc2a,
.heading_82a4,
.footer-orange-3e22 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.up_cc2a:hover,
.heading_82a4:hover,
.footer-orange-3e22:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.section_3aff,
.video_hovered_bcf0 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.section_3aff:hover,
.video_hovered_bcf0:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.item_black_3959,
.in-c3bf {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.item_black_3959:hover,
.in-c3bf:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.heading_82a4,
.video_hovered_bcf0 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.footer-orange-3e22,
.in-c3bf {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

.module-d4b0 {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 170, 0.6);
    }
}

/* ============================================
   Hero Section - Modern Card Style
   ============================================ */
.form-9c39 {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.form-9c39::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery_3e1e {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .gallery_3e1e {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-action-1d3b {
    z-index: 1;
}

.hot-c01b {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.banner_6300 {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.widget-b590 {
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.widget-b590 .card_brown_562d {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel_last_1e73 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.center-58fd {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.liquid-cbe2 {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.liquid-cbe2 .banner_80b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid-cbe2 strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.liquid-cbe2 p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

.gradient-fdc1 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.background-f1b3 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.top_7fab {
    position: relative;
}

.title_440a {
    display: none;
}

.tabs_8011 {
    display: block;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .title_440a {
        display: block;
    }

    .tabs_8011 {
        display: none;
        margin-bottom: 0;
    }
}

.menu-9d29 {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   Section Headers
   ============================================ */
.wrapper-easy-8290 {
    margin-bottom: var(--spacing-xl);
}

.wrapper-easy-8290.detail_complex_b92c {
    text-align: center;
}

.wrapper-easy-8290 h2 {
    margin-bottom: var(--spacing-sm);
}

.wrapper-easy-8290 p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Game Categories - Card Grid
   ============================================ */
.section_south_aa17 {
    padding: var(--spacing-2xl) 0;
}

.over-e0ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .over-e0ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .over-e0ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tertiary_complex_8b65 {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.tertiary_complex_8b65:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.shade_3a8e {
    position: relative;
    overflow: hidden;
    /* Use square media area to match 512x512 assets */
    aspect-ratio: 1/1;
    /* When images are "contained" (not cropped), letterboxing can appear.
       Use a subtle background so the card still looks intentional. */
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.shade_3a8e img {
    width: 100%;
    height: 100%;
    /* Show the full image without cropping */
    object-fit: contain !important;
    object-position: center;
    transition: transform var(--transition-slow);
}

.tertiary_complex_8b65:hover .shade_3a8e img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

.fixed_f2ae {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--primary-color);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.fixed_f2ae.wrapper-stone-8c08 {
    background: var(--secondary-color);
}

.fixed_f2ae.heading-iron-e839 {
    background: #ef4444;
}

.fixed_f2ae.aside_full_34a1 {
    background: var(--accent-color);
}

.header_lite_15c2 {
    padding: var(--spacing-lg);
}

.header_lite_15c2 h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.header_lite_15c2 p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.disabled_first_d100 {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.disabled_first_d100 li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.gradient_eaad {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    transition: gap var(--transition-fast);
}

.gradient_eaad:hover {
    gap: var(--spacing-xs);
}

/* ============================================
   About Section - Tab Navigation
   ============================================ */
.sidebar-b212 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.narrow-90ec {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.form-4804 {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.gallery_e2fc {
    flex: 1;
    min-width: 150px;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery_e2fc:hover {
    background: rgba(0, 212, 170, 0.05);
    color: var(--primary-color);
}

.gallery_e2fc.fn-active-31de {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.dark_8479 {
    min-height: 400px;
}

.advanced-f3b4 {
    display: none;
    padding: var(--spacing-xl);
    animation: fadeIn var(--transition-base);
}

.advanced-f3b4.fn-active-31de {
    display: block;
}

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

.surface-05dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .surface-05dc {
        grid-template-columns: 1fr 1fr;
    }
}

.card_cold_b1ca h3 {
    margin-bottom: var(--spacing-md);
}

.card_cold_b1ca p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.item-8734 {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.item-8734 li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.dim_4b45 img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Featured Games
   ============================================ */
.popup_fa97 {
    padding: var(--spacing-2xl) 0;
}

.title_e8db {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-f0d1 {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.footer-f0d1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.footer-f0d1 a {
    display: block;
    color: inherit;
}

.footer-f0d1 img {
    width: 100%;
    aspect-ratio: 1/1;
    /* Show the full image without cropping */
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    display: block;
}

.nav-copper-fcaa {
    padding: var(--spacing-md);
}

.nav-copper-fcaa h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.feature_a5ab,
.border-b9aa {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.border-b9aa {
    margin-top: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

.small-59c8 {
    text-align: center;
}

/* ============================================
   FAQ Section
   ============================================ */
.tall_c3af {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.pagination-large-e9b8 {
    max-width: 900px;
    margin: 0 auto;
}

.nav-b84c {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.nav-b84c:hover {
    border-color: var(--primary-color);
}

.sidebar_fd2d {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sidebar_fd2d:hover {
    color: var(--primary-color);
}

.button-tall-f268 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-normal);
    transition: transform var(--transition-base);
}

.nav-b84c.fn-active-31de .button-tall-f268 {
    transform: rotate(45deg);
}

.fresh_2607 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.nav-b84c.fn-active-31de .fresh_2607 {
    max-height: 1000px;
}

.fresh_2607 p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Trust Section
   ============================================ */
.caption_fixed_27d5 {
    padding: var(--spacing-2xl) 0;
}

.layout-up-f0da {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.detail_cold_eadf {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.detail_cold_eadf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tag-advanced-adfa {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.detail_cold_eadf h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.detail_cold_eadf p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Final CTA
   ============================================ */
.sort-focused-ae5f {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.sort-focused-ae5f::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.module-up-415b {
    text-align: center;
    position: relative;
    z-index: 1;
}

.module-up-415b h2 {
    margin-bottom: var(--spacing-md);
}

.module-up-415b p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.rough_cf00 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.gradient-soft-4247 {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: var(--font-weight-medium);
    margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.active-e586 {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.badge-cbac {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.text_b267 h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.text_b267 ul {
    list-style: none;
}

.text_b267 ul li {
    margin-bottom: var(--spacing-xs);
}

.text_b267 ul li a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.text_b267 ul li a:hover {
    color: var(--primary-color);
}

.paragraph_a009 {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.main_3ad1 {
    display: flex;
    gap: var(--spacing-sm);
}

.main_3ad1 a {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.main_3ad1 a:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-color: var(--primary-color);
}

.widget_6616 {
    text-align: center;
}

.photo_fresh_e357 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.photo_fresh_e357 span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.medium_0aab {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.medium_0aab span {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.summary_fluid_3eb3 p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.backdrop-bronze-3880 {
    color: var(--accent-color) !important;
    font-weight: var(--font-weight-medium);
}

/* ============================================
   Utility Classes
   ============================================ */
.detail_complex_b92c {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .form-9c39 {
        padding: var(--spacing-xl) 0;
    }
    
    .gradient-fdc1 {
        flex-direction: column;
    }
    
    .gradient-fdc1 > * {
        width: 100%;
    }
    
    .form-4804 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery_e2fc {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .title_e8db {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .badge-cbac {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .bottom-6537,
    .smooth_f5fc,
    .sort-focused-ae5f,
    .active-e586 {
        display: none;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Screen Reader Only */
.block_right_6996 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Performance Optimizations
   ============================================ */
@media (prefers-color-scheme: light) {
    /* Optional: Light mode support can be added here */
}

/* GPU Acceleration for Animations */
.menu-9d29,
.tertiary_complex_8b65,
.footer-f0d1,
.detail_cold_eadf {
    will-change: transform;
}

/* ============================================
   E-E-A-T: User Reviews Section
   ============================================ */
.narrow_8112 {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
}

.breadcrumb-simple-40d9 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.table-da64 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.caption-focused-25a4 {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
}

.media-prev-97ac {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.badge-smooth-7d05 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.secondary-tiny-052f {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.secondary-tiny-052f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.detail_85e6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.slider_ce97 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.slider_ce97 strong {
    font-size: 1.125rem;
    color: var(--text-primary);
}

.photo-lower-03fb {
    font-size: 0.8125rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.white-9d04 {
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.west_e900 {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
    flex-grow: 1;
}

.progress_hard_815d {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ============================================
   E-E-A-T: Company Expertise Section
   ============================================ */
.background-thick-ce22 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.iron-ac2d {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.header_stale_3e4d {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
}

.header_stale_3e4d h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
}

.header_stale_3e4d p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-md);
}

.row_0e5a {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.hot_3446 {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-base);
}

.hot_3446:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

.section-clean-616a {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.hot_3446 strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

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

.summary_pink_b4f3 {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
}

.summary_pink_b4f3 h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.button_large_e78f {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.mask_7996 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mask_7996:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.progress_8a27 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
    line-height: 1;
}

.picture-first-2e80 {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================
   E-E-A-T: Certifications Section
   ============================================ */
.focus_9ced {
    padding: var(--spacing-2xl) 0;
}

.top-a473 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.tall_370c {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tall_370c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.tall_370c:hover::before {
    transform: scaleX(1);
}

.tall_370c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.article-dim-f0bd {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

.tall_370c h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.tall_370c p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
}

.tall_370c p strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
}

.feature_purple_d475 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.feature_purple_d475 h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.feature_purple_d475 > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dropdown_a23d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.component_9ff6 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.component_9ff6 strong {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.component_9ff6 span {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
}

/* ============================================
   E-E-A-T: Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .badge-smooth-7d05 {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-simple-40d9 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .row_0e5a {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .button_large_e78f {
        grid-template-columns: 1fr;
    }
    
    .top-a473 {
        grid-template-columns: 1fr;
    }
    
    .dropdown_a23d {
        grid-template-columns: 1fr;
    }
    
    .header_stale_3e4d,
    .summary_pink_b4f3,
    .feature_purple_d475 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .row_0e5a {
        grid-template-columns: 1fr;
    }
    
    .progress_8a27 {
        font-size: 2rem;
    }
    
    .article-dim-f0bd {
        font-size: 2.5rem;
    }
}

/* ============================================
   E-E-A-T: Responsible Gaming & Transparency
   ============================================ */
.search_8b3e {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.secondary_hard_351d {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.mask-7fd5 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.mask-7fd5 h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.mask-7fd5 > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.fixed-2033 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.border_tall_7d05 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
}

.border_tall_7d05:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.thick-8146 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.border_tall_7d05 h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

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

.large-5199,
.heading_25d5 {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.large-5199 h4,
.heading_25d5 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.large-5199 ul,
.heading_25d5 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.large-5199 ul li,
.heading_25d5 ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

.large-5199 ul li strong {
    color: var(--text-primary);
}

.large-5199 ul li a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.large-5199 ul li a:hover {
    color: var(--primary-light);
}

.heading_25d5 > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.tooltip-out-6d82 {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-md));
    height: fit-content;
}

.tooltip-out-6d82 h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.tooltip-out-6d82 > p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
}

.chip-f0c6 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.hovered_ab81 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.fresh_0ea6 {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

.mask_82de {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
}

.old_8ddf {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Responsive for Responsible Gaming Section */
@media (max-width: 1024px) {
    .secondary_hard_351d {
        grid-template-columns: 1fr;
    }
    
    .tooltip-out-6d82 {
        position: static;
    }
}

@media (max-width: 768px) {
    .fixed-2033 {
        grid-template-columns: 1fr;
    }
    
    .tooltip-out-6d82,
    .large-5199,
    .heading_25d5 {
        padding: var(--spacing-md);
    }
    
    .thick-8146 {
        font-size: 2rem;
    }
}

/* css-noise: 1090 */
.phantom-card-f1 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
