/*
 * 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.focused-0e22 {
    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
   ============================================ */
.simple_e12f {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.active-easy-cbd2 {
    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;
}

.active-easy-cbd2.dropdown-85cb {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.active-easy-cbd2.thick_8ee5 {
    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; }
}

.column_84e5 {
    padding: 0;
}

.wrapper_steel_4bb7 {
    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 */
.wrapper_steel_4bb7 > * {
    min-width: 0;
}

.blue-b7cc {
    grid-template-columns: auto 1fr auto;
}

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

.disabled_0e99 {
    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);
}

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

@media (min-width: 768px) {
    .disabled_0e99 { font-size: 28px; }
    .new-ba21 { font-size: 11px; }
}

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

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

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

    .avatar-light-7291 {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

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

    .form_d35b { display: none !important; }
}

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

.blue-c300:hover .focus_86e2 {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

.focus_86e2 {
    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;
}

.surface_1029 {
    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);
}

.blue-c300:hover .surface_1029 {
    color: var(--text-secondary);
}

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

@media (min-width: 1024px) {
    .focus_86e2 {
        font-size: 32px;
    }
    
    .surface_1029 {
        font-size: 12px;
    }
}

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

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

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

.highlight_current_a9de a,
.element_cd92 {
    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 */
.highlight_current_a9de button.element_cd92 {
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .highlight_current_a9de a,
    .element_cd92 {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.highlight_current_a9de a:hover,
.element_cd92:hover,
.steel-e304.sidebar-5f89:hover > .element_cd92 {
    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);
}

.highlight_current_a9de a:active,
.element_cd92:active {
    transform: translateY(0);
}

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

.steel-e304.sidebar-5f89 {
    position: relative;
}

.element_cd92 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dynamic_f00a {
    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);
}

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

.steel-e304.sidebar-5f89:hover .info_orange_8f70 {
    transform: rotate(180deg);
    opacity: 1;
}

.steel-e304.sidebar-5f89:focus-within .info_orange_8f70,
.steel-e304.sidebar-5f89.outer-c020 .info_orange_8f70 {
    transform: rotate(180deg);
    opacity: 1;
}

.steel-e304.sidebar-5f89:hover .dynamic_f00a {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

.detail-623d {
    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 */
.detail-623d::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);
}

.steel-e304.sidebar-5f89:hover .detail-623d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.steel-e304.sidebar-5f89:focus-within .detail-623d,
.steel-e304.sidebar-5f89.outer-c020 .detail-623d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.preview_bee2 {
    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;
}

.preview_bee2:last-child {
    border-bottom: none;
}

.preview_bee2: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;
}

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

.preview_bee2:hover::before {
    opacity: 1;
}

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

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

/* Keep dropdown open when hovering over it */
.steel-e304.sidebar-5f89 .detail-623d:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.steel-e304.sidebar-5f89:hover .preview_bee2 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.steel-e304.sidebar-5f89:hover .preview_bee2:nth-child(1) { animation-delay: 0.05s; }
.steel-e304.sidebar-5f89:hover .preview_bee2:nth-child(2) { animation-delay: 0.1s; }
.steel-e304.sidebar-5f89:hover .preview_bee2:nth-child(3) { animation-delay: 0.15s; }
.steel-e304.sidebar-5f89:hover .preview_bee2:nth-child(4) { animation-delay: 0.2s; }
.steel-e304.sidebar-5f89:hover .preview_bee2:nth-child(5) { animation-delay: 0.25s; }
.steel-e304.sidebar-5f89:hover .preview_bee2: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) {
    .avatar-light-7291 {
        display: none !important;
    }
    
    .form_d35b { display: inline-flex !important; }
}

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

    .form_d35b { display: none !important; }
}

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

.grid-585d a {
    white-space: nowrap;
    flex-shrink: 0;
}

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

/* 移动端专属按钮样式 */
.border-210c {
    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;
}

.border-210c: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);
}

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

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

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

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


/* New Toggle Button */
.form_d35b {
    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;
}

.card-silver-64b6 {
    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) {
    .form_d35b[aria-expanded="true"] .card-silver-64b6:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .form_d35b[aria-expanded="true"] .card-silver-64b6:nth-child(2) {
        opacity: 0;
    }
    .form_d35b[aria-expanded="true"] .card-silver-64b6:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .form_d35b {
        flex-direction: row;
        gap: 0.625rem;
    }
    .form_d35b::after {
        content: 'Menu';
        color: var(--text-secondary);
        font-weight: var(--font-weight-bold);
        font-size: 0.9375rem;
        letter-spacing: 0.3px;
        line-height: 1;
    }
    .card-silver-64b6 {
        width: 18px;
    }
}


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

    .highlight_current_a9de a,
    .element_cd92 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .info_orange_8f70 {
        font-size: 0.6rem;
    }
    
    .detail-623d {
        min-width: 190px;
    }
    
    .preview_bee2 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .grid-585d {
        gap: 0.625rem;
    }
    
    .grid-585d .panel_selected_7629,
    .grid-585d .overlay-up-9843 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .wrapper_steel_4bb7 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .highlight_current_a9de {
        gap: 0.625rem;
    }
    
    .highlight_current_a9de a,
    .element_cd92 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .grid-585d {
        gap: 0.875rem;
    }
    
    .grid-585d .panel_selected_7629,
    .grid-585d .overlay-up-9843 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .detail-623d {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .wrapper_steel_4bb7 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .highlight_current_a9de {
        gap: 0.875rem;
    }
    
    .highlight_current_a9de a,
    .element_cd92 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .grid-585d {
        gap: 1rem;
    }
    
    .grid-585d .panel_selected_7629,
    .grid-585d .overlay-up-9843 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .detail-623d {
        min-width: 220px;
    }
    
    .preview_bee2 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.picture_red_4760.outer-c020 {
    visibility: visible;
    opacity: 1;
}

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

.form-638c {
    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;
}

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

.selected-272b {
    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);
}

.component_inner_bd14 {
    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);
}
.component_inner_bd14:hover { transform: translateY(-1px); background: rgba(33, 45, 82, 0.75); }

.heading-38f6 {
    padding: 0.875rem;
    overflow-y: auto;
}

.detail_2dec {
    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;
}

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

.detail_2dec 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;
}

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

.left-7c1b {
    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);
}

.left-7c1b .icon_silver_23f3 {
    min-width: 0;
}

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

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

/* Overlay Background */
.primary-08ae {
    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;
}

.primary-08ae.fn-active-20c3 {
    visibility: visible;
    opacity: 1;
}

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

/* Content Container */
.form_iron_44a9 {
    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);
}

.primary-08ae.fn-active-20c3 .form_iron_44a9 {
    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) {
    .primary-08ae {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .mask_cold_f1fc {
        display: none;
    }

    .form_iron_44a9 {
        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;
    }

    .primary-08ae.fn-active-20c3 .form_iron_44a9 {
        transform: translateY(0);
        opacity: 1;
    }

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

    .image-in-93f4 {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(180px, 1fr));
        gap: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .pagination_clean_2469 {
        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;
    }

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

    .pagination_clean_2469 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;
    }

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

    /* Desktop: simplify dropdown header area */
    .mask-warm-bbd2 {
        display: none;
    }

    .banner-bright-ae99 {
        display: none;
    }

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

/* Mobile-only: hide desktop-only menu */
@media (max-width: 767px) {
    .image-in-93f4 {
        display: none;
    }
}

/* Header */
.mask-warm-bbd2 {
    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);
}

.mask-warm-bbd2 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 */
.basic_4acd {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.description-easy-5341 {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.primary-08ae.fn-active-20c3 .description-easy-5341:nth-child(1) {
    animation-delay: 0.05s;
}

.primary-08ae.fn-active-20c3 .description-easy-5341:nth-child(2) {
    animation-delay: 0.1s;
}

.primary-08ae.fn-active-20c3 .description-easy-5341:nth-child(3) {
    animation-delay: 0.15s;
}

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

.thumbnail-orange-418f {
    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 */
.shade_up_a5ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.wood-56f0 {
    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;
}

.wood-56f0::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;
}

.wood-56f0:hover::before,
.wood-56f0:active::before {
    opacity: 1;
}

.wood-56f0:hover,
.wood-56f0: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);
}

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

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

.wood-56f0:hover .warm-f1f7,
.wood-56f0:active .warm-f1f7 {
    color: #00d4aa;
}

/* Quick Actions */
.banner-bright-ae99 {
    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);
}

.icon_silver_23f3 {
    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;
}

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

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

.icon_silver_23f3.fn-secondary-20c3 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.icon_silver_23f3.fn-secondary-20c3:hover,
.icon_silver_23f3.fn-secondary-20c3:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .wood-56f0 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .progress-a92d {
        font-size: 1.875rem;
    }
    
    .warm-f1f7 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .form_iron_44a9 {
        padding: 1rem;
    }
    
    .mask-warm-bbd2 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .basic_4acd {
        gap: 1rem;
    }
    
    .wood-56f0 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .progress-a92d {
        font-size: 2rem;
    }
    
    .warm-f1f7 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .form_iron_44a9 {
        padding: 1.25rem;
    }
    
    .mask-warm-bbd2 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .mask-warm-bbd2 h3 {
        font-size: 1.25rem;
    }
    
    .basic_4acd {
        gap: 1.25rem;
    }
    
    .thumbnail-orange-418f {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .wood-56f0 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .progress-a92d {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .warm-f1f7 {
        font-size: 0.9375rem;
    }
    
    .icon_silver_23f3 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.panel_selected_7629,
.overlay-up-9843,
.steel_2013,
.hard-c8be,
.nav-239e,
.dirty-e5a0,
.gradient-stone-1634 {
    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) {
    .panel_selected_7629,
    .overlay-up-9843,
    .steel_2013 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.panel_selected_7629,
.hard-c8be,
.gradient-stone-1634 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.panel_selected_7629:hover,
.hard-c8be:hover,
.gradient-stone-1634:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.overlay-up-9843,
.nav-239e {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.overlay-up-9843:hover,
.nav-239e:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.steel_2013,
.dirty-e5a0 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.steel_2013:hover,
.dirty-e5a0:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.hard-c8be,
.nav-239e {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.gradient-stone-1634,
.dirty-e5a0 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

.blue-373f {
    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
   ============================================ */
.photo_thick_8c6b {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.photo_thick_8c6b::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;
}

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

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

.notification-east-f32c {
    z-index: 1;
}

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

.notification_fixed_791f {
    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);
}

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

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

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

.yellow-fd7e {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.button-fast-876c {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.button-fast-876c .badge_huge_f9eb {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-fast-876c strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.button-fast-876c p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

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

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

.solid_7038 {
    position: relative;
}

.hover-fast-aaea {
    display: none;
}

.button-up-36b6 {
    display: block;
    margin-bottom: var(--spacing-md);
}

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

    .button-up-36b6 {
        display: none;
        margin-bottom: 0;
    }
}

.inner_3204 {
    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
   ============================================ */
.progress_b5de {
    margin-bottom: var(--spacing-xl);
}

.progress_b5de.hidden-9275 {
    text-align: center;
}

.progress_b5de h2 {
    margin-bottom: var(--spacing-sm);
}

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

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

.tiny-7f24 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

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

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

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

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

.panel_dc0b {
    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));
}

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

.heading-4a42:hover .panel_dc0b img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

.sort_selected_d49d {
    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;
}

.sort_selected_d49d.button-advanced-8d82 {
    background: var(--secondary-color);
}

.sort_selected_d49d.input_0cba {
    background: #ef4444;
}

.sort_selected_d49d.caption_wood_936d {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

.primary-stale-2daf {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

.modal_0089 {
    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);
}

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

.modal_0089.fn-active-20c3 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.shade-44be {
    min-height: 400px;
}

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

.pro-f794.fn-active-20c3 {
    display: block;
}

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

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

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

.tooltip-638b h3 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

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

.stale_1439 a {
    display: block;
    color: inherit;
}

.stale_1439 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;
}

.dynamic-d4c8 {
    padding: var(--spacing-md);
}

.dynamic-d4c8 h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.breadcrumb-lower-3e75,
.up_069c {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.picture-south-98ff {
    text-align: center;
}

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

.caption-wood-0bab {
    max-width: 900px;
    margin: 0 auto;
}

.backdrop_fast_8f4c {
    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);
}

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

.modal_2533 {
    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);
}

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

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

.backdrop_fast_8f4c.fn-active-20c3 .input_d053 {
    transform: rotate(45deg);
}

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

.backdrop_fast_8f4c.fn-active-20c3 .white_7b51 {
    max-height: 1000px;
}

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

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

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

.current_c306 {
    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);
}

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

.smooth-546b {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

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

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

/* ============================================
   Final CTA
   ============================================ */
.motion-1167 {
    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;
}

.motion-1167::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%;
}

.lite-34d6 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lite-34d6 h2 {
    margin-bottom: var(--spacing-md);
}

.lite-34d6 p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

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

.first-a22c {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: var(--font-weight-medium);
    margin: 0;
}

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

.disabled-c0d0 {
    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);
}

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

.main-liquid-392f ul {
    list-style: none;
}

.main-liquid-392f ul li {
    margin-bottom: var(--spacing-xs);
}

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

.main-liquid-392f ul li a:hover {
    color: var(--primary-color);
}

.form-small-69a0 {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.container-paper-0b6e {
    display: flex;
    gap: var(--spacing-sm);
}

.container-paper-0b6e 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);
}

.container-paper-0b6e a:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-color: var(--primary-color);
}

.tag_2de2 {
    text-align: center;
}

.small_ad5d {
    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);
}

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

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

.pagination_cold_70ce 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);
}

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

.logo-ea4f {
    color: var(--accent-color) !important;
    font-weight: var(--font-weight-medium);
}

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .photo_thick_8c6b {
        padding: var(--spacing-xl) 0;
    }
    
    .hot_dc88 {
        flex-direction: column;
    }
    
    .hot_dc88 > * {
        width: 100%;
    }
    
    .action_312e {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal_0089 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .feature-warm-8951 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .disabled-c0d0 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .active-easy-cbd2,
    .primary-08ae,
    .motion-1167,
    .border-liquid-54b7 {
        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 */
.tabs-875b {
    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 */
.inner_3204,
.heading-4a42,
.stale_1439,
.current_c306 {
    will-change: transform;
}

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

.layout-middle-47d7 {
    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-65ff {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

.feature-green-1dbf {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

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

.west-9e61 {
    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);
}

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

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

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

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

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

.thick-b3ab {
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--accent-color);
}

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

.button-0166 {
    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
   ============================================ */
.message-complex-3225 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.heading-wood-6a7b {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

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

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

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

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

.paragraph_orange_34cb {
    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);
}

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

.light-5605 {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

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

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

.simple_1df2 {
    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);
}

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

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

.tall-182c {
    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);
}

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

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

.paragraph-clean-7d15 {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

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

.right_eb26 {
    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;
}

.right_eb26::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);
}

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

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

.tag-medium-df19 {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

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

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

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

.secondary_645d {
    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;
}

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

.secondary_645d > 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;
}

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

.button-center-1fb5 {
    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);
}

.button-center-1fb5 strong {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.button-center-1fb5 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) {
    .pagination_2eef {
        grid-template-columns: 1fr;
    }
    
    .layout-middle-47d7 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .middle-bd85 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .old_54fa {
        grid-template-columns: 1fr;
    }
    
    .chip_f247 {
        grid-template-columns: 1fr;
    }
    
    .content-fixed-406a {
        grid-template-columns: 1fr;
    }
    
    .plasma_58e1,
    .simple_1df2,
    .secondary_645d {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .middle-bd85 {
        grid-template-columns: 1fr;
    }
    
    .active_76cb {
        font-size: 2rem;
    }
    
    .tag-medium-df19 {
        font-size: 2.5rem;
    }
}

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

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

.tiny-4aa3 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

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

.tiny-4aa3 > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

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

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

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

.modal-right-4c5c {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

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

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

.badge-mini-e7fa,
.shadow-green-d352 {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.badge-mini-e7fa h4,
.shadow-green-d352 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.badge-mini-e7fa ul,
.shadow-green-d352 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-mini-e7fa ul li,
.shadow-green-d352 ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

.badge-mini-e7fa ul li strong {
    color: var(--text-primary);
}

.badge-mini-e7fa ul li a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.badge-mini-e7fa ul li a:hover {
    color: var(--primary-light);
}

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

.disabled-a2f9 {
    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;
}

.disabled-a2f9 h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

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

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

.stale_5e22 {
    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);
}

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

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

.sort-b9b6 {
    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) {
    .footer-1f58 {
        grid-template-columns: 1fr;
    }
    
    .disabled-a2f9 {
        position: static;
    }
}

@media (max-width: 768px) {
    .huge-2332 {
        grid-template-columns: 1fr;
    }
    
    .disabled-a2f9,
    .badge-mini-e7fa,
    .shadow-green-d352 {
        padding: var(--spacing-md);
    }
    
    .modal-right-4c5c {
        font-size: 2rem;
    }
}

/* css-noise: 53fd */
.phantom-card-z5 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
