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

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

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

.tooltip_e89d.widget-mini-3091 {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.tooltip_e89d.thumbnail-static-987f {
    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; }
}

.card-cool-7dc0 {
    padding: 0;
}

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

.secondary-b877 {
    grid-template-columns: auto 1fr auto;
}

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

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

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

@media (min-width: 768px) {
    .outer_63c4 { font-size: 28px; }
    .preview_east_fd85 { font-size: 11px; }
}

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

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

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

    .highlight-d36f {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

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

    .lite_0910 { display: none !important; }
}

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

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

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

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

.dropdown_center_e7d5:hover .tabs_basic_72e8 {
    color: var(--text-secondary);
}

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

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

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

.sidebar-lower-2d40 li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.sidebar-lower-2d40 a,
.form-098f {
    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 */
.sidebar-lower-2d40 button.form-098f {
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .sidebar-lower-2d40 a,
    .form-098f {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.sidebar-lower-2d40 a:hover,
.form-098f:hover,
.under_6be6.input_035c:hover > .form-098f {
    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);
}

.sidebar-lower-2d40 a:active,
.form-098f:active {
    transform: translateY(0);
}

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

.under_6be6.input_035c {
    position: relative;
}

.form-098f {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hovered-2bc7 {
    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);
}

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

.under_6be6.input_035c:hover .logo_0c1f {
    transform: rotate(180deg);
    opacity: 1;
}

.under_6be6.input_035c:focus-within .logo_0c1f,
.under_6be6.input_035c.mask_b8d6 .logo_0c1f {
    transform: rotate(180deg);
    opacity: 1;
}

.under_6be6.input_035c:hover .hovered-2bc7 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.under_6be6.input_035c:hover .description_green_6c9b {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.under_6be6.input_035c:focus-within .description_green_6c9b,
.under_6be6.input_035c.mask_b8d6 .description_green_6c9b {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.outline-steel-40c8 {
    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;
}

.outline-steel-40c8:last-child {
    border-bottom: none;
}

.outline-steel-40c8: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;
}

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

.outline-steel-40c8:hover::before {
    opacity: 1;
}

.outline-steel-40c8:first-child {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.outline-steel-40c8:last-child {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Keep dropdown open when hovering over it */
.under_6be6.input_035c .description_green_6c9b:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.under_6be6.input_035c:hover .outline-steel-40c8 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.under_6be6.input_035c:hover .outline-steel-40c8:nth-child(1) { animation-delay: 0.05s; }
.under_6be6.input_035c:hover .outline-steel-40c8:nth-child(2) { animation-delay: 0.1s; }
.under_6be6.input_035c:hover .outline-steel-40c8:nth-child(3) { animation-delay: 0.15s; }
.under_6be6.input_035c:hover .outline-steel-40c8:nth-child(4) { animation-delay: 0.2s; }
.under_6be6.input_035c:hover .outline-steel-40c8:nth-child(5) { animation-delay: 0.25s; }
.under_6be6.input_035c:hover .outline-steel-40c8: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) {
    .highlight-d36f {
        display: none !important;
    }
    
    .lite_0910 { display: inline-flex !important; }
}

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

    .lite_0910 { display: none !important; }
}

.alert-stale-791c {
    display: none;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

.alert-stale-791c a {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .alert-stale-791c {
        display: flex;
    }
}

/* 移动端专属按钮样式 */
.plasma-31d4 {
    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;
}

.plasma-31d4: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);
}

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

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

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

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


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

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

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


/* Medium desktop: compact spacing */
@media (min-width: 1401px) and (max-width: 1600px) {
    .stone-4988 {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .sidebar-lower-2d40 {
        gap: 0.375rem;
    }

    .sidebar-lower-2d40 a,
    .form-098f {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .logo_0c1f {
        font-size: 0.6rem;
    }
    
    .description_green_6c9b {
        min-width: 190px;
    }
    
    .outline-steel-40c8 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .alert-stale-791c {
        gap: 0.625rem;
    }
    
    .alert-stale-791c .copper-708b,
    .alert-stale-791c .tooltip-rough-24d2 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .stone-4988 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .sidebar-lower-2d40 {
        gap: 0.625rem;
    }
    
    .sidebar-lower-2d40 a,
    .form-098f {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .alert-stale-791c {
        gap: 0.875rem;
    }
    
    .alert-stale-791c .copper-708b,
    .alert-stale-791c .tooltip-rough-24d2 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .description_green_6c9b {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .stone-4988 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .sidebar-lower-2d40 {
        gap: 0.875rem;
    }
    
    .sidebar-lower-2d40 a,
    .form-098f {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .alert-stale-791c {
        gap: 1rem;
    }
    
    .alert-stale-791c .copper-708b,
    .alert-stale-791c .tooltip-rough-24d2 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .description_green_6c9b {
        min-width: 220px;
    }
    
    .outline-steel-40c8 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.content_372a.mask_b8d6 {
    visibility: visible;
    opacity: 1;
}

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

.dynamic-6ef7 {
    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;
}

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

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

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

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

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

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

.block-7f73 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;
}

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

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

.highlight_copper_6c90 .sort_f154 {
    min-width: 0;
}

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

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

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

.card_d926.fn-active-9226 {
    visibility: visible;
    opacity: 1;
}

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

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

.card_d926.fn-active-9226 .basic_f6b4 {
    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) {
    .card_d926 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .thumbnail-35e0 {
        display: none;
    }

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

    .card_d926.fn-active-9226 .basic_f6b4 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

    .red-8608 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;
    }

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

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

    .warm-7daf {
        display: none;
    }

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

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

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

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

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

.card_d926.fn-active-9226 .icon_thick_8ea5:nth-child(1) {
    animation-delay: 0.05s;
}

.card_d926.fn-active-9226 .icon_thick_8ea5:nth-child(2) {
    animation-delay: 0.1s;
}

.card_d926.fn-active-9226 .icon_thick_8ea5:nth-child(3) {
    animation-delay: 0.15s;
}

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

.widget-iron-fc0a {
    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 */
.breadcrumb-left-c603 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

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

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

.element_stone_9b0e:hover::before,
.element_stone_9b0e:active::before {
    opacity: 1;
}

.element_stone_9b0e:hover,
.element_stone_9b0e: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);
}

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

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

.element_stone_9b0e:hover .video_huge_3cd3,
.element_stone_9b0e:active .video_huge_3cd3 {
    color: #00d4aa;
}

/* Quick Actions */
.warm-7daf {
    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);
}

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

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

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

.sort_f154.fn-secondary-9226 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.sort_f154.fn-secondary-9226:hover,
.sort_f154.fn-secondary-9226:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .element_stone_9b0e {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .bronze-4f41 {
        font-size: 1.875rem;
    }
    
    .video_huge_3cd3 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .basic_f6b4 {
        padding: 1rem;
    }
    
    .plasma_56f9 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .north_22e6 {
        gap: 1rem;
    }
    
    .element_stone_9b0e {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .bronze-4f41 {
        font-size: 2rem;
    }
    
    .video_huge_3cd3 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .basic_f6b4 {
        padding: 1.25rem;
    }
    
    .plasma_56f9 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .plasma_56f9 h3 {
        font-size: 1.25rem;
    }
    
    .north_22e6 {
        gap: 1.25rem;
    }
    
    .widget-iron-fc0a {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .element_stone_9b0e {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .bronze-4f41 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .video_huge_3cd3 {
        font-size: 0.9375rem;
    }
    
    .sort_f154 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.copper-708b,
.tooltip-rough-24d2,
.dim-a486,
.paragraph_east_0463,
.secondary_089f,
.carousel_dirty_91f7,
.main-cfbf {
    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) {
    .copper-708b,
    .tooltip-rough-24d2,
    .dim-a486 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.copper-708b,
.paragraph_east_0463,
.main-cfbf {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.copper-708b:hover,
.paragraph_east_0463:hover,
.main-cfbf:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.tooltip-rough-24d2,
.secondary_089f {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.tooltip-rough-24d2:hover,
.secondary_089f:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.dim-a486,
.carousel_dirty_91f7 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.dim-a486:hover,
.carousel_dirty_91f7:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.paragraph_east_0463,
.secondary_089f {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.main-cfbf,
.carousel_dirty_91f7 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

.brown_365f {
    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
   ============================================ */
.bronze-906c {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.bronze-906c::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;
}

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

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

.alert-a862 {
    z-index: 1;
}

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

.image-huge-fb1f {
    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);
}

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

.section_d9fe .warm-8e23 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.liquid-97c1 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

.solid_bf4e .breadcrumb_c4f7 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

.highlight-pressed-1f6d {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.up-52dd {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.clean-62a7 {
    position: relative;
}

.purple_1ea2 {
    display: none;
}

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

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

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

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

.brown_aae2.wood-b439 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.hover-last-7421 {
    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;
}

.hover-last-7421.item_50a2 {
    background: var(--secondary-color);
}

.hover-last-7421.current_6133 {
    background: #ef4444;
}

.hover-last-7421.pagination_41fa {
    background: var(--accent-color);
}

.upper-771e {
    padding: var(--spacing-lg);
}

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

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

.filter-outer-3f81 {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

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

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

.status-0e7b:hover {
    gap: var(--spacing-xs);
}

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

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

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

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

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

.input-6237.fn-active-9226 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.disabled_8ef6 {
    min-height: 400px;
}

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

.in_f413.fn-active-9226 {
    display: block;
}

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

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

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

.grid-pro-226c h3 {
    margin-bottom: var(--spacing-md);
}

.grid-pro-226c p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

.sort-east-6cd6,
.column_b0b6 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.accent-85d9 {
    text-align: center;
}

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

.hidden-medium-0dcf {
    max-width: 900px;
    margin: 0 auto;
}

.tag-solid-a3ea {
    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);
}

.tag-solid-a3ea:hover {
    border-color: var(--primary-color);
}

.hidden-3a7e {
    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);
}

.hidden-3a7e:hover {
    color: var(--primary-color);
}

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

.tag-solid-a3ea.fn-active-9226 .mask-bf27 {
    transform: rotate(45deg);
}

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

.tag-solid-a3ea.fn-active-9226 .description_c824 {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

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

.gallery_left_5f94 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.gallery_left_5f94 h2 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

.gold-04b9 ul {
    list-style: none;
}

.gold-04b9 ul li {
    margin-bottom: var(--spacing-xs);
}

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

.gold-04b9 ul li a:hover {
    color: var(--primary-color);
}

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

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

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

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

.main-hovered-8a2a {
    text-align: center;
}

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

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .bronze-906c {
        padding: var(--spacing-xl) 0;
    }
    
    .highlight-pressed-1f6d {
        flex-direction: column;
    }
    
    .highlight-pressed-1f6d > * {
        width: 100%;
    }
    
    .icon_pro_a61a {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .input-6237 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .gradient_blue_22e8 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .gallery_fb0d {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .tooltip_e89d,
    .card_d926,
    .solid_2871,
    .easy-e7bf {
        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 */
.layout-6a87 {
    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 */
.mini-ed18,
.panel_huge_b94d,
.tooltip_dc65,
.background_226d {
    will-change: transform;
}

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

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

.accordion-new-b399 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

.icon_north_ad95 {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

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

.dropdown-4ac0 {
    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);
}

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

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

.search-thick-6ab7 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.search-thick-6ab7 strong {
    font-size: 1.125rem;
    color: var(--text-primary);
}

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

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

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

.frame-gold-1292 {
    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
   ============================================ */
.selected_3d32 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

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

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

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

.slider-iron-3547 {
    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);
}

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

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

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

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

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

.mini_c950 {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

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

.filter-right-525d {
    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;
}

.filter-right-525d::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);
}

.filter-right-525d:hover::before {
    transform: scaleX(1);
}

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

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

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

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

.filter-right-525d p strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
}

.hidden-north-69ba {
    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;
}

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

.hidden-north-69ba > 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;
}

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

.progress-30eb {
    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);
}

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

.progress-30eb 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) {
    .shadow-1f1d {
        grid-template-columns: 1fr;
    }
    
    .thick_a26d {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .gas-4cfc {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slow-4153 {
        grid-template-columns: 1fr;
    }
    
    .photo_small_5b0a {
        grid-template-columns: 1fr;
    }
    
    .alert-ff82 {
        grid-template-columns: 1fr;
    }
    
    .sidebar-cab3,
    .slider-iron-3547,
    .hidden-north-69ba {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .gas-4cfc {
        grid-template-columns: 1fr;
    }
    
    .filter_tall_c676 {
        font-size: 2rem;
    }
    
    .column_pro_21e5 {
        font-size: 2.5rem;
    }
}

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

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

.gold-1cdb {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

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

.gold-1cdb > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

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

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

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

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

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

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

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

.tertiary_left_37e6 h4,
.north-f2d2 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.tertiary_left_37e6 ul,
.north-f2d2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

.summary-1daf {
    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;
}

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

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

.thick-7e02 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.gradient-outer-65c8 {
    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);
}

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

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

.block-selected-db1d {
    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) {
    .badge_ec51 {
        grid-template-columns: 1fr;
    }
    
    .summary-1daf {
        position: static;
    }
}

@media (max-width: 768px) {
    .text_tall_70cc {
        grid-template-columns: 1fr;
    }
    
    .summary-1daf,
    .tertiary_left_37e6,
    .north-f2d2 {
        padding: var(--spacing-md);
    }
    
    .frame-d782 {
        font-size: 2rem;
    }
}

/* css-noise: 9baf */
.shadow-element-x7 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
