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

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

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

.copper-1756.disabled-east-f69b {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.copper-1756.hot-4f94 {
    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; }
}

.pagination_ec90 {
    padding: 0;
}

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

.status-2138 {
    grid-template-columns: auto 1fr auto;
}

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

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

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

@media (min-width: 768px) {
    .layout-8615 { font-size: 28px; }
    .progress-fdf1 { font-size: 11px; }
}

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

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

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

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

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

    .gradient_lower_2f86 { display: none !important; }
}

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

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

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

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

.secondary-6d53:hover .picture_center_cb72 {
    color: var(--text-secondary);
}

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

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

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

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

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

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

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

.overlay_bottom_0fb9 a:hover,
.top-7656:hover,
.short-4c07.over-36de:hover > .top-7656 {
    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);
}

.overlay_bottom_0fb9 a:active,
.top-7656:active {
    transform: translateY(0);
}

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

.short-4c07.over-36de {
    position: relative;
}

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

.background-motion-888f {
    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);
}

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

.short-4c07.over-36de:hover .pressed-8fad {
    transform: rotate(180deg);
    opacity: 1;
}

.short-4c07.over-36de:focus-within .pressed-8fad,
.short-4c07.over-36de.cool-ebb0 .pressed-8fad {
    transform: rotate(180deg);
    opacity: 1;
}

.short-4c07.over-36de:hover .background-motion-888f {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.short-4c07.over-36de:hover .static_8e4f {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.short-4c07.over-36de:focus-within .static_8e4f,
.short-4c07.over-36de.cool-ebb0 .static_8e4f {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.title-center-17ae {
    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;
}

.title-center-17ae:last-child {
    border-bottom: none;
}

.title-center-17ae: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;
}

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

.title-center-17ae:hover::before {
    opacity: 1;
}

.title-center-17ae:first-child {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.title-center-17ae:last-child {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Keep dropdown open when hovering over it */
.short-4c07.over-36de .static_8e4f:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.short-4c07.over-36de:hover .title-center-17ae {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.short-4c07.over-36de:hover .title-center-17ae:nth-child(1) { animation-delay: 0.05s; }
.short-4c07.over-36de:hover .title-center-17ae:nth-child(2) { animation-delay: 0.1s; }
.short-4c07.over-36de:hover .title-center-17ae:nth-child(3) { animation-delay: 0.15s; }
.short-4c07.over-36de:hover .title-center-17ae:nth-child(4) { animation-delay: 0.2s; }
.short-4c07.over-36de:hover .title-center-17ae:nth-child(5) { animation-delay: 0.25s; }
.short-4c07.over-36de:hover .title-center-17ae: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) {
    .progress_lower_a96f {
        display: none !important;
    }
    
    .gradient_lower_2f86 { display: inline-flex !important; }
}

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

    .gradient_lower_2f86 { display: none !important; }
}

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

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

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

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

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

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

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

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

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


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

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

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


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

    .overlay_bottom_0fb9 a,
    .top-7656 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .pressed-8fad {
        font-size: 0.6rem;
    }
    
    .static_8e4f {
        min-width: 190px;
    }
    
    .title-center-17ae {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .highlight_504a {
        gap: 0.625rem;
    }
    
    .highlight_504a .backdrop-static-c2cd,
    .highlight_504a .text-rough-2e06 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .avatar_e164 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .overlay_bottom_0fb9 {
        gap: 0.625rem;
    }
    
    .overlay_bottom_0fb9 a,
    .top-7656 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .highlight_504a {
        gap: 0.875rem;
    }
    
    .highlight_504a .backdrop-static-c2cd,
    .highlight_504a .text-rough-2e06 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .static_8e4f {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .avatar_e164 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .overlay_bottom_0fb9 {
        gap: 0.875rem;
    }
    
    .overlay_bottom_0fb9 a,
    .top-7656 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .highlight_504a {
        gap: 1rem;
    }
    
    .highlight_504a .backdrop-static-c2cd,
    .highlight_504a .text-rough-2e06 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .static_8e4f {
        min-width: 220px;
    }
    
    .title-center-17ae {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.input_7bc8.cool-ebb0 {
    visibility: visible;
    opacity: 1;
}

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

.bronze-46af {
    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;
}

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

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

.picture-south-0223 {
    padding: 0.875rem;
    overflow-y: auto;
}

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

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

.form-7a6e 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;
}

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

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

.clean_19fe .east-ca15 {
    min-width: 0;
}

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

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

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

.new-4495.fn-active-6a63 {
    visibility: visible;
    opacity: 1;
}

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

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

.new-4495.fn-active-6a63 .up_cbdd {
    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) {
    .new-4495 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .narrow_8775 {
        display: none;
    }

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

    .new-4495.fn-active-6a63 .up_cbdd {
        transform: translateY(0);
        opacity: 1;
    }

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

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

    .feature-3a8b {
        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;
    }

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

    .feature-3a8b 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;
    }

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

    /* Desktop: simplify dropdown header area */
    .slider-ba3e {
        display: none;
    }

    .active-eb9e {
        display: none;
    }

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

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

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

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

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

.new-4495.fn-active-6a63 .pagination_prev_ffbe:nth-child(1) {
    animation-delay: 0.05s;
}

.new-4495.fn-active-6a63 .pagination_prev_ffbe:nth-child(2) {
    animation-delay: 0.1s;
}

.new-4495.fn-active-6a63 .pagination_prev_ffbe:nth-child(3) {
    animation-delay: 0.15s;
}

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

.clean-4e32 {
    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 */
.active-outer-a6a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

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

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

.slider-9293:hover::before,
.slider-9293:active::before {
    opacity: 1;
}

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

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

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

.slider-9293:hover .fresh_79a3,
.slider-9293:active .fresh_79a3 {
    color: #00d4aa;
}

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

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

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

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

.east-ca15.fn-secondary-6a63 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.east-ca15.fn-secondary-6a63:hover,
.east-ca15.fn-secondary-6a63:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .slider-9293 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .element-west-a4b1 {
        font-size: 1.875rem;
    }
    
    .fresh_79a3 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .up_cbdd {
        padding: 1rem;
    }
    
    .slider-ba3e {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .active_a15e {
        gap: 1rem;
    }
    
    .slider-9293 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .element-west-a4b1 {
        font-size: 2rem;
    }
    
    .fresh_79a3 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .up_cbdd {
        padding: 1.25rem;
    }
    
    .slider-ba3e {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .slider-ba3e h3 {
        font-size: 1.25rem;
    }
    
    .active_a15e {
        gap: 1.25rem;
    }
    
    .clean-4e32 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .slider-9293 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .element-west-a4b1 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .fresh_79a3 {
        font-size: 0.9375rem;
    }
    
    .east-ca15 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.backdrop-static-c2cd,
.text-rough-2e06,
.light-731d,
.content-1719,
.large-dfae,
.first_c88b,
.avatar_over_aab0 {
    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) {
    .backdrop-static-c2cd,
    .text-rough-2e06,
    .light-731d {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.backdrop-static-c2cd,
.content-1719,
.avatar_over_aab0 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.backdrop-static-c2cd:hover,
.content-1719:hover,
.avatar_over_aab0:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.text-rough-2e06,
.large-dfae {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.text-rough-2e06:hover,
.large-dfae:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.light-731d,
.first_c88b {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.light-731d:hover,
.first_c88b:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.content-1719,
.large-dfae {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.avatar_over_aab0,
.first_c88b {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

.breadcrumb-huge-71fb {
    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
   ============================================ */
.purple-b5d1 {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.slider-8f5b {
    z-index: 1;
}

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

.hidden-9c87 {
    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);
}

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

.purple-c877 .image-pressed-96a8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.progress-gold-14dd {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

.black_6442 .article-center-3121 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.caption-wide-3384 {
    position: relative;
}

.element_497d {
    display: none;
}

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

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

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

.brown-503b {
    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
   ============================================ */
.focus-c938 {
    margin-bottom: var(--spacing-xl);
}

.focus-c938.notification-2e1e {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.logo-706f:hover .wood_da9e img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.info_53d7.header_54a5 {
    background: var(--secondary-color);
}

.info_53d7.form_medium_f8c0 {
    background: #ef4444;
}

.info_53d7.layout_ea15 {
    background: var(--accent-color);
}

.fixed-781f {
    padding: var(--spacing-lg);
}

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

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

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

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

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

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

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

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

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

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

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

.block_full_406d.fn-active-6a63 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.link-hard-a7a9 {
    min-height: 400px;
}

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

.row_copper_7ae0.fn-active-6a63 {
    display: block;
}

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

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

@media (min-width: 768px) {
    .footer-first-22b3 {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-hard-ec89 h3 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

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

.status-medium-a773 a {
    display: block;
    color: inherit;
}

.status-medium-a773 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;
}

.alert-67b1 {
    padding: var(--spacing-md);
}

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

.detail_3d4e,
.medium_b9b7 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.section_new_287c {
    text-align: center;
}

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

.caption-rough-cbf7 {
    max-width: 900px;
    margin: 0 auto;
}

.label-864e {
    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);
}

.label-864e:hover {
    border-color: var(--primary-color);
}

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

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

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

.label-864e.fn-active-6a63 .tall-66db {
    transform: rotate(45deg);
}

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

.label-864e.fn-active-6a63 .widget_8a3c {
    max-height: 1000px;
}

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

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

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

.pro-6db1 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark-a980 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.sidebar-tall-37f0 {
    text-align: center;
}

.primary-pressed-58c8 {
    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);
}

.primary-pressed-58c8 span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

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

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

/* ============================================
   Utility Classes
   ============================================ */
.notification-2e1e {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .purple-b5d1 {
        padding: var(--spacing-xl) 0;
    }
    
    .logo-prev-0161 {
        flex-direction: column;
    }
    
    .logo-prev-0161 > * {
        width: 100%;
    }
    
    .hidden_cool_95e1 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .block_full_406d {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .tall_4d26 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .table_8e4b {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .copper-1756,
    .new-4495,
    .tiny_3081,
    .media-large-10ea {
        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 */
.basic_8540 {
    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 */
.brown-503b,
.logo-706f,
.status-medium-a773,
.pro-6db1 {
    will-change: transform;
}

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

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

.cold-d6d9 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-smooth-c3d1 {
    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);
}

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

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

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

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

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

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

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

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

.caption-selected-01c7 {
    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;
}

.caption-selected-01c7::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);
}

.caption-selected-01c7:hover::before {
    transform: scaleX(1);
}

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

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

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

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

.caption-selected-01c7 p strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
}

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

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

.description-e077 > 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;
}

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

.item-1ddb {
    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-1ddb strong {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.item-1ddb 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) {
    .primary_narrow_c164 {
        grid-template-columns: 1fr;
    }
    
    .widget-2740 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .box-fff5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .label-west-7a38 {
        grid-template-columns: 1fr;
    }
    
    .shade_upper_a477 {
        grid-template-columns: 1fr;
    }
    
    .lower-7cf7 {
        grid-template-columns: 1fr;
    }
    
    .feature_easy_51af,
    .footer-smooth-c3d1,
    .description-e077 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .box-fff5 {
        grid-template-columns: 1fr;
    }
    
    .pattern-7b27 {
        font-size: 2rem;
    }
    
    .wood_392f {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.east_5c68,
.search-yellow-b59b {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.east_5c68 h4,
.search-yellow-b59b h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.east_5c68 ul,
.search-yellow-b59b ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east_5c68 ul li,
.search-yellow-b59b ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

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

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

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

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

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

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

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

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

.nav-pink-f487 {
    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);
}

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

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

.solid-e918 {
    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) {
    .out-9736 {
        grid-template-columns: 1fr;
    }
    
    .nav-b96f {
        position: static;
    }
}

@media (max-width: 768px) {
    .table_narrow_9f67 {
        grid-template-columns: 1fr;
    }
    
    .nav-b96f,
    .east_5c68,
    .search-yellow-b59b {
        padding: var(--spacing-md);
    }
    
    .yellow_6e91 {
        font-size: 2rem;
    }
}

/* css-noise: 7365 */
.widget-item-y5 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
