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

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

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

.feature-a1f1.backdrop-dim-34df {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.feature-a1f1.grid-easy-9914 {
    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; }
}

.icon_under_c377 {
    padding: 0;
}

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

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

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

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

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

@media (min-width: 768px) {
    .container_middle_6359 { font-size: 28px; }
    .over-0b32 { font-size: 11px; }
}

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

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

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

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

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

    .background-plasma-21bf { display: none !important; }
}

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

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

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

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

.soft_90fd:hover .overlay_over_f84c {
    color: var(--text-secondary);
}

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

@media (min-width: 1024px) {
    .widget-e6d2 {
        font-size: 32px;
    }
    
    .overlay_over_f84c {
        font-size: 12px;
    }
}

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

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

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

.accent-c368 a,
.west-17b8 {
    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 */
.accent-c368 button.west-17b8 {
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .accent-c368 a,
    .west-17b8 {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.accent-c368 a:hover,
.west-17b8:hover,
.panel-cool-631e.pro-6b38:hover > .west-17b8 {
    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);
}

.accent-c368 a:active,
.west-17b8:active {
    transform: translateY(0);
}

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

.panel-cool-631e.pro-6b38 {
    position: relative;
}

.west-17b8 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-2c04 {
    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);
}

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

.panel-cool-631e.pro-6b38:hover .dropdown-first-7b6d {
    transform: rotate(180deg);
    opacity: 1;
}

.panel-cool-631e.pro-6b38:focus-within .dropdown-first-7b6d,
.panel-cool-631e.pro-6b38.card-hard-c242 .dropdown-first-7b6d {
    transform: rotate(180deg);
    opacity: 1;
}

.panel-cool-631e.pro-6b38:hover .hero-2c04 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.panel-cool-631e.pro-6b38:hover .simple-6b23 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.panel-cool-631e.pro-6b38:focus-within .simple-6b23,
.panel-cool-631e.pro-6b38.card-hard-c242 .simple-6b23 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.outline_huge_0c79 {
    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_huge_0c79:last-child {
    border-bottom: none;
}

.outline_huge_0c79: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_huge_0c79::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

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

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

/* Keep dropdown open when hovering over it */
.panel-cool-631e.pro-6b38 .simple-6b23:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.panel-cool-631e.pro-6b38:hover .outline_huge_0c79 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.panel-cool-631e.pro-6b38:hover .outline_huge_0c79:nth-child(1) { animation-delay: 0.05s; }
.panel-cool-631e.pro-6b38:hover .outline_huge_0c79:nth-child(2) { animation-delay: 0.1s; }
.panel-cool-631e.pro-6b38:hover .outline_huge_0c79:nth-child(3) { animation-delay: 0.15s; }
.panel-cool-631e.pro-6b38:hover .outline_huge_0c79:nth-child(4) { animation-delay: 0.2s; }
.panel-cool-631e.pro-6b38:hover .outline_huge_0c79:nth-child(5) { animation-delay: 0.25s; }
.panel-cool-631e.pro-6b38:hover .outline_huge_0c79: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) {
    .selected_ff08 {
        display: none !important;
    }
    
    .background-plasma-21bf { display: inline-flex !important; }
}

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

    .background-plasma-21bf { display: none !important; }
}

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

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

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

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

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

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

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

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

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


/* New Toggle Button */
.background-plasma-21bf {
    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;
}

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

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


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

    .accent-c368 a,
    .west-17b8 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .dropdown-first-7b6d {
        font-size: 0.6rem;
    }
    
    .simple-6b23 {
        min-width: 190px;
    }
    
    .outline_huge_0c79 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .thick_7f0e {
        gap: 0.625rem;
    }
    
    .thick_7f0e .paper-b1b6,
    .thick_7f0e .status-2e33 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .mask_40eb {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .accent-c368 {
        gap: 0.625rem;
    }
    
    .accent-c368 a,
    .west-17b8 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .thick_7f0e {
        gap: 0.875rem;
    }
    
    .thick_7f0e .paper-b1b6,
    .thick_7f0e .status-2e33 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .simple-6b23 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .mask_40eb {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .accent-c368 {
        gap: 0.875rem;
    }
    
    .accent-c368 a,
    .west-17b8 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .thick_7f0e {
        gap: 1rem;
    }
    
    .thick_7f0e .paper-b1b6,
    .thick_7f0e .status-2e33 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .simple-6b23 {
        min-width: 220px;
    }
    
    .outline_huge_0c79 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.menu_last_dcfe.card-hard-c242 {
    visibility: visible;
    opacity: 1;
}

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

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

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

.link-gold-a520 {
    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);
}

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

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

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

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

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

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

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

.silver_e982 .avatar-ea3c {
    min-width: 0;
}

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

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

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

.tall_97d4.fn-active-c247 {
    visibility: visible;
    opacity: 1;
}

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

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

.tall_97d4.fn-active-c247 .input-over-8689 {
    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) {
    .tall_97d4 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .overlay_9108 {
        display: none;
    }

    .input-over-8689 {
        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;
    }

    .tall_97d4.fn-active-c247 .input-over-8689 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

    .progress_upper_4aa4 {
        display: none;
    }

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

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

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

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

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

.tall_97d4.fn-active-c247 .article_yellow_962d:nth-child(1) {
    animation-delay: 0.05s;
}

.tall_97d4.fn-active-c247 .article_yellow_962d:nth-child(2) {
    animation-delay: 0.1s;
}

.tall_97d4.fn-active-c247 .article_yellow_962d:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

.element-84a1 {
    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-84a1::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-84a1:hover::before,
.element-84a1:active::before {
    opacity: 1;
}

.element-84a1:hover,
.element-84a1: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);
}

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

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

.element-84a1:hover .inner-cdad,
.element-84a1:active .inner-cdad {
    color: #00d4aa;
}

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

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

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

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

.avatar-ea3c.fn-secondary-c247 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.avatar-ea3c.fn-secondary-c247:hover,
.avatar-ea3c.fn-secondary-c247:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .element-84a1 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .fresh-1db8 {
        font-size: 1.875rem;
    }
    
    .inner-cdad {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .input-over-8689 {
        padding: 1rem;
    }
    
    .widget_0c23 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .wrapper_2aa0 {
        gap: 1rem;
    }
    
    .element-84a1 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .fresh-1db8 {
        font-size: 2rem;
    }
    
    .inner-cdad {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .input-over-8689 {
        padding: 1.25rem;
    }
    
    .widget_0c23 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .widget_0c23 h3 {
        font-size: 1.25rem;
    }
    
    .wrapper_2aa0 {
        gap: 1.25rem;
    }
    
    .old_e0ef {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .element-84a1 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .fresh-1db8 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .inner-cdad {
        font-size: 0.9375rem;
    }
    
    .avatar-ea3c {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.paper-b1b6,
.status-2e33,
.box-paper-fafb,
.hover_3d37,
.layout-dynamic-430f,
.search-eafc,
.list_hard_17b3 {
    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) {
    .paper-b1b6,
    .status-2e33,
    .box-paper-fafb {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.paper-b1b6,
.hover_3d37,
.list_hard_17b3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.paper-b1b6:hover,
.hover_3d37:hover,
.list_hard_17b3:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.status-2e33,
.layout-dynamic-430f {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.status-2e33:hover,
.layout-dynamic-430f:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.box-paper-fafb,
.search-eafc {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.box-paper-fafb:hover,
.search-eafc:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.hover_3d37,
.layout-dynamic-430f {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.list_hard_17b3,
.search-eafc {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.search-e605 {
    z-index: 1;
}

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

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

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

.outline-bf51 .north-f181 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.video-549d {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

.progress-e387 .focus-60ff {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.badge-selected-4cc4 {
    position: relative;
}

.highlight_fa97 {
    display: none;
}

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

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

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

.article-6e24 {
    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
   ============================================ */
.liquid_d241 {
    margin-bottom: var(--spacing-xl);
}

.liquid_d241.shadow_basic_be71 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.fresh-da78:hover .under-e27a img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

.tertiary-020a {
    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;
}

.tertiary-020a.pink-bf5b {
    background: var(--secondary-color);
}

.tertiary-020a.carousel-7e37 {
    background: #ef4444;
}

.tertiary-020a.box_a638 {
    background: var(--accent-color);
}

.green-3b35 {
    padding: var(--spacing-lg);
}

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

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

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

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

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

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

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

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

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

.feature-gas-13d9 {
    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);
}

.feature-gas-13d9:hover {
    background: rgba(0, 212, 170, 0.05);
    color: var(--primary-color);
}

.feature-gas-13d9.fn-active-c247 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.summary_8bbb {
    min-height: 400px;
}

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

.highlight-6146.fn-active-c247 {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.north_39ee,
.disabled-a09c {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.tag_prev_2f71 {
    text-align: center;
}

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

.column-3818 {
    max-width: 900px;
    margin: 0 auto;
}

.popup-568f {
    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);
}

.popup-568f:hover {
    border-color: var(--primary-color);
}

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

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

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

.popup-568f.fn-active-c247 .header-solid-6eb2 {
    transform: rotate(45deg);
}

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

.popup-568f.fn-active-c247 .input-5328 {
    max-height: 1000px;
}

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

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

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

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

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

.gradient-over-7baa {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

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

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

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

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

.alert-366a {
    text-align: center;
    position: relative;
    z-index: 1;
}

.alert-366a h2 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

.layout-5795 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.next_c11e {
    text-align: center;
}

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

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

.glass-52af {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.glass-52af 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);
}

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .badge_0425 {
        padding: var(--spacing-xl) 0;
    }
    
    .heading_c269 {
        flex-direction: column;
    }
    
    .heading_c269 > * {
        width: 100%;
    }
    
    .notification_clean_6e80 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .feature-gas-13d9 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .panel_519e {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .copper-5991 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .feature-a1f1,
    .tall_97d4,
    .fresh_714b,
    .detail_smooth_0bc4 {
        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 */
.liquid_f632 {
    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 */
.article-6e24,
.fresh-da78,
.container_3617,
.title_gas_caec {
    will-change: transform;
}

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

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

.full-2b7e {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

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

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

.button-98e6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

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

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

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

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

.orange-4148 {
    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
   ============================================ */
.pink-09f0 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-over-e16b {
    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;
}

.hero-over-e16b::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);
}

.hero-over-e16b:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

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

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

.sort-7f41 > 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;
}

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

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

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

.sidebar_middle_eacf 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) {
    .outer_199a {
        grid-template-columns: 1fr;
    }
    
    .row-d888 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .outline_black_5e0c {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .frame-422b {
        grid-template-columns: 1fr;
    }
    
    .hot_786e {
        grid-template-columns: 1fr;
    }
    
    .table_8af5 {
        grid-template-columns: 1fr;
    }
    
    .modal-north-9cec,
    .old-afac,
    .sort-7f41 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .outline_black_5e0c {
        grid-template-columns: 1fr;
    }
    
    .search_down_745c {
        font-size: 2rem;
    }
    
    .alert_a0bb {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_out_c46b ul,
.steel_1d0d ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

.carousel-purple-c7ad {
    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);
}

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

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

.right_1bfb {
    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) {
    .button-black-fd67 {
        grid-template-columns: 1fr;
    }
    
    .texture_147b {
        position: static;
    }
}

@media (max-width: 768px) {
    .menu-medium-f62a {
        grid-template-columns: 1fr;
    }
    
    .texture_147b,
    .notification_out_c46b,
    .steel_1d0d {
        padding: var(--spacing-md);
    }
    
    .grid-dc99 {
        font-size: 2rem;
    }
}

/* css-noise: 6172 */
.promo-block-w3 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
