/*
 * 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.chip-copper-2a9f {
    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
   ============================================ */
.badge-642f {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

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

.outline-d75c.in_5c46 {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.outline-d75c.gallery-d497 {
    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; }
}

.banner-cbcd {
    padding: 0;
}

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

.glass-173a {
    grid-template-columns: auto 1fr auto;
}

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

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

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

@media (min-width: 768px) {
    .label_0ac0 { font-size: 28px; }
    .cool-74cb { font-size: 11px; }
}

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

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

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

    .hover-last-9db6 {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

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

    .logo-orange-a1f3 { display: none !important; }
}

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

.title_1a9f:hover .aside-green-35ce {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

.aside-green-35ce {
    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;
}

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

.title_1a9f:hover .pressed_1ac6 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .aside-green-35ce {
        font-size: 28px;
    }
    
    .pressed_1ac6 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .aside-green-35ce {
        font-size: 32px;
    }
    
    .pressed_1ac6 {
        font-size: 12px;
    }
}

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

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

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

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

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

.aside_hot_12a9 a:hover,
.description_8448:hover,
.selected-b6b1.status_9608:hover > .description_8448 {
    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);
}

.aside_hot_12a9 a:active,
.description_8448:active {
    transform: translateY(0);
}

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

.selected-b6b1.status_9608 {
    position: relative;
}

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

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

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

.selected-b6b1.status_9608:hover .component-under-5570 {
    transform: rotate(180deg);
    opacity: 1;
}

.selected-b6b1.status_9608:focus-within .component-under-5570,
.selected-b6b1.status_9608.nav_selected_8a01 .component-under-5570 {
    transform: rotate(180deg);
    opacity: 1;
}

.selected-b6b1.status_9608:hover .box_fluid_8f88 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.selected-b6b1.status_9608:hover .hard-58eb {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.selected-b6b1.status_9608:focus-within .hard-58eb,
.selected-b6b1.status_9608.nav_selected_8a01 .hard-58eb {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.selected-b6b1.status_9608 .hard-58eb:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.selected-b6b1.status_9608:hover .brown_39a8 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.selected-b6b1.status_9608:hover .brown_39a8:nth-child(1) { animation-delay: 0.05s; }
.selected-b6b1.status_9608:hover .brown_39a8:nth-child(2) { animation-delay: 0.1s; }
.selected-b6b1.status_9608:hover .brown_39a8:nth-child(3) { animation-delay: 0.15s; }
.selected-b6b1.status_9608:hover .brown_39a8:nth-child(4) { animation-delay: 0.2s; }
.selected-b6b1.status_9608:hover .brown_39a8:nth-child(5) { animation-delay: 0.25s; }
.selected-b6b1.status_9608:hover .brown_39a8: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) {
    .hover-last-9db6 {
        display: none !important;
    }
    
    .logo-orange-a1f3 { display: inline-flex !important; }
}

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

    .logo-orange-a1f3 { display: none !important; }
}

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

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

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

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

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

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

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

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

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


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

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

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


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

    .aside_hot_12a9 a,
    .description_8448 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .component-under-5570 {
        font-size: 0.6rem;
    }
    
    .hard-58eb {
        min-width: 190px;
    }
    
    .brown_39a8 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .popup-db0e {
        gap: 0.625rem;
    }
    
    .popup-db0e .section_wood_7fd3,
    .popup-db0e .summary-63e7 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .badge-3d28 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .aside_hot_12a9 {
        gap: 0.625rem;
    }
    
    .aside_hot_12a9 a,
    .description_8448 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .popup-db0e {
        gap: 0.875rem;
    }
    
    .popup-db0e .section_wood_7fd3,
    .popup-db0e .summary-63e7 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .hard-58eb {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .badge-3d28 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .aside_hot_12a9 {
        gap: 0.875rem;
    }
    
    .aside_hot_12a9 a,
    .description_8448 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .popup-db0e {
        gap: 1rem;
    }
    
    .popup-db0e .section_wood_7fd3,
    .popup-db0e .summary-63e7 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .hard-58eb {
        min-width: 220px;
    }
    
    .brown_39a8 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.table_next_14b2.nav_selected_8a01 {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

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

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

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

.sidebar-b29b 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;
}

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

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

.pro_2b3b .title-e7ab {
    min-width: 0;
}

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

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

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

.primary_north_f269.fn-active-98c1 {
    visibility: visible;
    opacity: 1;
}

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

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

.primary_north_f269.fn-active-98c1 .outer_169d {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
}

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

    .fast_c99e {
        display: none;
    }

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

    .primary_north_f269.fn-active-98c1 .outer_169d {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

    /* Desktop: simplify dropdown header area */
    .gold-3359 {
        display: none;
    }

    .nav_1188 {
        display: none;
    }

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

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

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

.gold-3359 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 */
.input-white-0857 {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.element-73e0 {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.primary_north_f269.fn-active-98c1 .element-73e0:nth-child(1) {
    animation-delay: 0.05s;
}

.primary_north_f269.fn-active-98c1 .element-73e0:nth-child(2) {
    animation-delay: 0.1s;
}

.primary_north_f269.fn-active-98c1 .element-73e0:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

.menu-next-f88d {
    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;
}

.menu-next-f88d::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;
}

.menu-next-f88d:hover::before,
.menu-next-f88d:active::before {
    opacity: 1;
}

.menu-next-f88d:hover,
.menu-next-f88d: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);
}

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

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

.menu-next-f88d:hover .shadow_7ba4,
.menu-next-f88d:active .shadow_7ba4 {
    color: #00d4aa;
}

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

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

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

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

.title-e7ab.fn-secondary-98c1 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.title-e7ab.fn-secondary-98c1:hover,
.title-e7ab.fn-secondary-98c1:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .menu-next-f88d {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .middle_4250 {
        font-size: 1.875rem;
    }
    
    .shadow_7ba4 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .outer_169d {
        padding: 1rem;
    }
    
    .gold-3359 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .input-white-0857 {
        gap: 1rem;
    }
    
    .menu-next-f88d {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .middle_4250 {
        font-size: 2rem;
    }
    
    .shadow_7ba4 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .outer_169d {
        padding: 1.25rem;
    }
    
    .gold-3359 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .gold-3359 h3 {
        font-size: 1.25rem;
    }
    
    .input-white-0857 {
        gap: 1.25rem;
    }
    
    .gold_fecd {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .menu-next-f88d {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .middle_4250 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .shadow_7ba4 {
        font-size: 0.9375rem;
    }
    
    .title-e7ab {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.section_wood_7fd3,
.summary-63e7,
.fast_4112,
.overlay_0afd,
.layout-pink-ca65,
.media_gas_2a27,
.title-d7b9 {
    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) {
    .section_wood_7fd3,
    .summary-63e7,
    .fast_4112 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.section_wood_7fd3,
.overlay_0afd,
.title-d7b9 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.section_wood_7fd3:hover,
.overlay_0afd:hover,
.title-d7b9:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.summary-63e7,
.layout-pink-ca65 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.summary-63e7:hover,
.layout-pink-ca65:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.fast_4112,
.media_gas_2a27 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.fast_4112:hover,
.media_gas_2a27:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.overlay_0afd,
.layout-pink-ca65 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.title-d7b9,
.media_gas_2a27 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.gold_176f {
    z-index: 1;
}

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

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

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

.copper_d554 .tag-95a2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.prev_59ed .stale_a24e {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.hero-6843 {
    position: relative;
}

.text_huge_9b23 {
    display: none;
}

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

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

    .grid-1327 {
        display: none;
        margin-bottom: 0;
    }
}

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

.glass_87e0.complex_a0d9 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.popup-focused-37c5:hover .warm-8688 img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

.heading-0a5d {
    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;
}

.heading-0a5d.medium_444e {
    background: var(--secondary-color);
}

.heading-0a5d.paper_7612 {
    background: #ef4444;
}

.heading-0a5d.disabled-in-008f {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.active_3cdc.fn-active-98c1 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.outer_359c {
    min-height: 400px;
}

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

.banner-dark-c134.fn-active-98c1 {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-014a a {
    display: block;
    color: inherit;
}

.sidebar-014a 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;
}

.aside-south-7735 {
    padding: var(--spacing-md);
}

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

.photo-a923,
.video-980e {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.tooltip-in-a648 {
    text-align: center;
}

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

.sort-a21a {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.rough_454e.fn-active-98c1 .component_12c4 {
    transform: rotate(45deg);
}

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

.rough_454e.fn-active-98c1 .icon-2b4f {
    max-height: 1000px;
}

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

/* ============================================
   Trust Section
   ============================================ */
.breadcrumb-gas-7fdb {
    padding: var(--spacing-2xl) 0;
}

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

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

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

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

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

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

/* ============================================
   Final CTA
   ============================================ */
.badge-dynamic-112c {
    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;
}

.badge-dynamic-112c::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%;
}

.over-9e9e {
    text-align: center;
    position: relative;
    z-index: 1;
}

.over-9e9e h2 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

.shadow-70b6 {
    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);
}

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

.paper_6968 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.tiny_92b6 {
    text-align: center;
}

.carousel-full-2068 {
    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);
}

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .gradient_complex_a30d {
        padding: var(--spacing-xl) 0;
    }
    
    .gas_9f61 {
        flex-direction: column;
    }
    
    .gas_9f61 > * {
        width: 100%;
    }
    
    .gradient_8366 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .active_3cdc {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .backdrop-hot-cf97 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .shadow-70b6 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .outline-d75c,
    .primary_north_f269,
    .badge-dynamic-112c,
    .wrapper_advanced_de51 {
        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 */
.button_1810 {
    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 */
.info-bdfb,
.popup-focused-37c5,
.sidebar-014a,
.shade-0703 {
    will-change: transform;
}

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

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

.border-focused-454e {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

.hard_a7d0 {
    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
   ============================================ */
.logo-lite-124b {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

.list-wood-3fb0 {
    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);
}

.list-wood-3fb0:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop_8fec 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) {
    .popup_solid_3771 {
        grid-template-columns: 1fr;
    }
    
    .sidebar_huge_ef48 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .brown_8818 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .up_4b9e {
        grid-template-columns: 1fr;
    }
    
    .plasma_fed6 {
        grid-template-columns: 1fr;
    }
    
    .logo-083f {
        grid-template-columns: 1fr;
    }
    
    .gradient_6b1f,
    .gold-bd22,
    .dim_7875 {
        padding: var(--spacing-md);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-d2da ul,
.dim_8763 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.old_ba53 {
    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) {
    .header-top-1cb8 {
        grid-template-columns: 1fr;
    }
    
    .iron_428a {
        position: static;
    }
}

@media (max-width: 768px) {
    .outline_6afd {
        grid-template-columns: 1fr;
    }
    
    .iron_428a,
    .dropdown-d2da,
    .dim_8763 {
        padding: var(--spacing-md);
    }
    
    .focus_7356 {
        font-size: 2rem;
    }
}

/* css-noise: 48da */
.promo-block-a6 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
