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

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

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

.over_c7c0.warm-2896 {
    box-shadow: var(--shadow-lg);
}

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

.right_cd56 {
    padding: 0;
}

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

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

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

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

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

@media (min-width: 768px) {
    .texture_ab99 { font-size: 28px; }
    .sidebar-fc28 { font-size: 11px; }
}

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

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

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

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

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

    .message_bronze_3251 { display: none !important; }
}

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

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

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

.footer-brown-a6be {
    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);
}

.row_rough_baac:hover .footer-brown-a6be {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .small_2982 {
        font-size: 28px;
    }
    
    .footer-brown-a6be {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .small_2982 {
        font-size: 32px;
    }
    
    .footer-brown-a6be {
        font-size: 12px;
    }
}

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

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

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

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

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

.fast_4a0a a:hover,
.next-b6b4:hover,
.large-a4f9.picture-dca6:hover > .next-b6b4 {
    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);
}

.fast_4a0a a:active,
.next-b6b4:active {
    transform: translateY(0);
}

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

.large-a4f9.picture-dca6 {
    position: relative;
}

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

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

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

.large-a4f9.picture-dca6:hover .accent_cold_cec9 {
    transform: rotate(180deg);
    opacity: 1;
}

.large-a4f9.picture-dca6:focus-within .accent_cold_cec9,
.large-a4f9.picture-dca6.active-98eb .accent_cold_cec9 {
    transform: rotate(180deg);
    opacity: 1;
}

.large-a4f9.picture-dca6:hover .last-dad1 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

.block-outer-76b3 {
    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 */
.block-outer-76b3::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);
}

.large-a4f9.picture-dca6:hover .block-outer-76b3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.large-a4f9.picture-dca6:focus-within .block-outer-76b3,
.large-a4f9.picture-dca6.active-98eb .block-outer-76b3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.media-d4cb:last-child {
    border-bottom: none;
}

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

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

.media-d4cb:hover::before {
    opacity: 1;
}

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

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

/* Keep dropdown open when hovering over it */
.large-a4f9.picture-dca6 .block-outer-76b3:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.large-a4f9.picture-dca6:hover .media-d4cb {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.large-a4f9.picture-dca6:hover .media-d4cb:nth-child(1) { animation-delay: 0.05s; }
.large-a4f9.picture-dca6:hover .media-d4cb:nth-child(2) { animation-delay: 0.1s; }
.large-a4f9.picture-dca6:hover .media-d4cb:nth-child(3) { animation-delay: 0.15s; }
.large-a4f9.picture-dca6:hover .media-d4cb:nth-child(4) { animation-delay: 0.2s; }
.large-a4f9.picture-dca6:hover .media-d4cb:nth-child(5) { animation-delay: 0.25s; }
.large-a4f9.picture-dca6:hover .media-d4cb: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) {
    .tooltip_319c {
        display: none !important;
    }
    
    .message_bronze_3251 { display: inline-flex !important; }
}

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

    .message_bronze_3251 { display: none !important; }
}

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

.in-1bef a {
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

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

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

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

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

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


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

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

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


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

    .fast_4a0a a,
    .next-b6b4 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .accent_cold_cec9 {
        font-size: 0.6rem;
    }
    
    .block-outer-76b3 {
        min-width: 190px;
    }
    
    .media-d4cb {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .in-1bef {
        gap: 0.625rem;
    }
    
    .in-1bef .gradient_selected_6e04,
    .in-1bef .column_new_668d {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .layout-4c89 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .fast_4a0a {
        gap: 0.625rem;
    }
    
    .fast_4a0a a,
    .next-b6b4 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .in-1bef {
        gap: 0.875rem;
    }
    
    .in-1bef .gradient_selected_6e04,
    .in-1bef .column_new_668d {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .block-outer-76b3 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .layout-4c89 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .fast_4a0a {
        gap: 0.875rem;
    }
    
    .fast_4a0a a,
    .next-b6b4 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .in-1bef {
        gap: 1rem;
    }
    
    .in-1bef .gradient_selected_6e04,
    .in-1bef .column_new_668d {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .block-outer-76b3 {
        min-width: 220px;
    }
    
    .media-d4cb {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.main_ab9b.active-98eb {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

.footer-north-e07f {
    padding: 0.875rem;
    overflow-y: auto;
}

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

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

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

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

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

.wood_1678 .article_1fd3 {
    min-width: 0;
}

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

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

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

.next-4028.fn-active-059a {
    visibility: visible;
    opacity: 1;
}

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

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

.next-4028.fn-active-059a .heading_west_2099 {
    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) {
    .next-4028 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .accent-8d63 {
        display: none;
    }

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

    .next-4028.fn-active-059a .heading_west_2099 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

    /* Desktop: simplify dropdown header area */
    .pagination-ffca {
        display: none;
    }

    .active-mini-fad1 {
        display: none;
    }

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

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

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

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

.row-huge-32a3 {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.next-4028.fn-active-059a .row-huge-32a3:nth-child(1) {
    animation-delay: 0.05s;
}

.next-4028.fn-active-059a .row-huge-32a3:nth-child(2) {
    animation-delay: 0.1s;
}

.next-4028.fn-active-059a .row-huge-32a3:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

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

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

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

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

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

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

.title_huge_6830:hover .status_lite_995c,
.title_huge_6830:active .status_lite_995c {
    color: #00d4aa;
}

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

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

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

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

.article_1fd3.fn-secondary-059a {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.article_1fd3.fn-secondary-059a:hover,
.article_1fd3.fn-secondary-059a:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .title_huge_6830 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .blue-64ea {
        font-size: 1.875rem;
    }
    
    .status_lite_995c {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .heading_west_2099 {
        padding: 1rem;
    }
    
    .pagination-ffca {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .layout_13ec {
        gap: 1rem;
    }
    
    .title_huge_6830 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .blue-64ea {
        font-size: 2rem;
    }
    
    .status_lite_995c {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .heading_west_2099 {
        padding: 1.25rem;
    }
    
    .pagination-ffca {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .pagination-ffca h3 {
        font-size: 1.25rem;
    }
    
    .layout_13ec {
        gap: 1.25rem;
    }
    
    .article-9b01 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .title_huge_6830 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .blue-64ea {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .status_lite_995c {
        font-size: 0.9375rem;
    }
    
    .article_1fd3 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.gradient_selected_6e04,
.column_new_668d,
.description_short_abd6,
.message_active_5f07,
.logo-current-0ffc,
.disabled-inner-af75,
.bright-7c67 {
    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) {
    .gradient_selected_6e04,
    .column_new_668d,
    .description_short_abd6 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.gradient_selected_6e04,
.message_active_5f07,
.bright-7c67 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.gradient_selected_6e04:hover,
.message_active_5f07:hover,
.bright-7c67:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.column_new_668d,
.logo-current-0ffc {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.column_new_668d:hover,
.logo-current-0ffc:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.description_short_abd6,
.disabled-inner-af75 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.description_short_abd6:hover,
.disabled-inner-af75:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.message_active_5f07,
.logo-current-0ffc {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.bright-7c67,
.disabled-inner-af75 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.link_3a84 {
    z-index: 1;
}

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

.pagination-copper-20db {
    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);
}

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

.avatar-thick-f7a5 .input-last-2df4 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.layout-prev-7105 .tall_bf0d {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.border_iron_2e3a {
    position: relative;
}

.smooth-5718 {
    display: none;
}

.shade-547b {
    display: block;
    margin-bottom: var(--spacing-md);
}

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

    .shade-547b {
        display: none;
        margin-bottom: 0;
    }
}

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

.accent_809d.item-641a {
    text-align: center;
}

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

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

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

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

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

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

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

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

.primary-23de {
    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));
}

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

.progress_0496:hover .primary-23de img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

.breadcrumb-light-626b {
    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;
}

.breadcrumb-light-626b.focus_blue_15e9 {
    background: var(--secondary-color);
}

.breadcrumb-light-626b.dirty-ec3a {
    background: #ef4444;
}

.breadcrumb-light-626b.shade_fixed_5b2f {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.section-0660.fn-active-059a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.border-49bd {
    min-height: 400px;
}

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

.gallery-6cb2.fn-active-059a {
    display: block;
}

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

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

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

.search-dim-d0b8 h3 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

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

.new-ba12 a {
    display: block;
    color: inherit;
}

.new-ba12 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;
}

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

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

.outer_7231,
.active-efb3 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.wrapper-pink-094e {
    text-align: center;
}

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

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

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

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

.aside-south-a47a {
    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);
}

.aside-south-a47a:hover {
    color: var(--primary-color);
}

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

.hidden_thick_e582.fn-active-059a .stale-347e {
    transform: rotate(45deg);
}

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

.hidden_thick_e582.fn-active-059a .action-e6be {
    max-height: 1000px;
}

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

/* ============================================
   Trust Section
   ============================================ */
.panel-clean-7c15 {
    padding: var(--spacing-2xl) 0;
}

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

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

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

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

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

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

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

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

.list-short-95e4 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.list-short-95e4 h2 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

.hard_d9f2 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.list-577d {
    text-align: center;
}

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

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

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

.wide-f230 span {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

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

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

/* ============================================
   Utility Classes
   ============================================ */
.item-641a {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .tooltip_blue_6123 {
        padding: var(--spacing-xl) 0;
    }
    
    .block_c48e {
        flex-direction: column;
    }
    
    .block_c48e > * {
        width: 100%;
    }
    
    .element-rough-26ef {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .section-0660 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .thumbnail-8267 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .fresh_5126 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .over_c7c0,
    .next-4028,
    .lower_02a0,
    .filter_hard_953b {
        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 */
.right-dbac {
    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 */
.gas-9959,
.progress_0496,
.new-ba12,
.card-under-e11a {
    will-change: transform;
}

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

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

.element-094a {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

.main-white-81fa {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-4d04 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.advanced-e8b3:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

.detail-prev-f319 {
    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;
}

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

.detail-prev-f319 > 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;
}

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

.right-240c {
    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);
}

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

.right-240c 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) {
    .article_2db0 {
        grid-template-columns: 1fr;
    }
    
    .red-7011 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .accordion-dark-dc65 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bottom-488f {
        grid-template-columns: 1fr;
    }
    
    .iron_e367 {
        grid-template-columns: 1fr;
    }
    
    .title_8ec2 {
        grid-template-columns: 1fr;
    }
    
    .icon-hard-404f,
    .avatar-ae59,
    .detail-prev-f319 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .accordion-dark-dc65 {
        grid-template-columns: 1fr;
    }
    
    .accent-current-efe1 {
        font-size: 2rem;
    }
    
    .white_9c52 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.hot-6f77 h4,
.copper_ffcd h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.hot-6f77 ul,
.copper_ffcd ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.hot-6f77 ul li strong {
    color: var(--text-primary);
}

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

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

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

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

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

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

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

.steel-1eee {
    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);
}

.layout-current-3fc1 {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.thumbnail_6972 {
    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) {
    .status_8647 {
        grid-template-columns: 1fr;
    }
    
    .alert-c7b0 {
        position: static;
    }
}

@media (max-width: 768px) {
    .basic_e1a4 {
        grid-template-columns: 1fr;
    }
    
    .alert-c7b0,
    .hot-6f77,
    .copper_ffcd {
        padding: var(--spacing-md);
    }
    
    .old_a993 {
        font-size: 2rem;
    }
}

/* css-noise: 9b95 */
.promo-block-h5 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
