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

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

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

.summary-fast-8267.thumbnail_ce4a {
    box-shadow: var(--shadow-lg);
}

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

.detail_b409 {
    padding: 0;
}

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

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

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

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

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

@media (min-width: 768px) {
    .hard-b6ea { font-size: 28px; }
    .label_0461 { font-size: 11px; }
}

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

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

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

    .active-red-9ee6 {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

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

    .message_66f2 { display: none !important; }
}

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

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

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

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

.dirty_b480:hover .texture_center_8493 {
    color: var(--text-secondary);
}

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

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

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

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

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

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

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

.dropdown_pro_ddda a:hover,
.mask_04c4:hover,
.heading-red-5183.backdrop_208b:hover > .mask_04c4 {
    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);
}

.dropdown_pro_ddda a:active,
.mask_04c4:active {
    transform: translateY(0);
}

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

.heading-red-5183.backdrop_208b {
    position: relative;
}

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

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

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

.heading-red-5183.backdrop_208b:hover .gradient_gas_c1a8 {
    transform: rotate(180deg);
    opacity: 1;
}

.heading-red-5183.backdrop_208b:focus-within .gradient_gas_c1a8,
.heading-red-5183.backdrop_208b.complex_a6b6 .gradient_gas_c1a8 {
    transform: rotate(180deg);
    opacity: 1;
}

.heading-red-5183.backdrop_208b:hover .stale_3129 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.heading-red-5183.backdrop_208b:hover .cold_d4e2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.heading-red-5183.backdrop_208b:focus-within .cold_d4e2,
.heading-red-5183.backdrop_208b.complex_a6b6 .cold_d4e2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.lite-1769:last-child {
    border-bottom: none;
}

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

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

.lite-1769:hover::before {
    opacity: 1;
}

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

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

/* Keep dropdown open when hovering over it */
.heading-red-5183.backdrop_208b .cold_d4e2:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.heading-red-5183.backdrop_208b:hover .lite-1769 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.heading-red-5183.backdrop_208b:hover .lite-1769:nth-child(1) { animation-delay: 0.05s; }
.heading-red-5183.backdrop_208b:hover .lite-1769:nth-child(2) { animation-delay: 0.1s; }
.heading-red-5183.backdrop_208b:hover .lite-1769:nth-child(3) { animation-delay: 0.15s; }
.heading-red-5183.backdrop_208b:hover .lite-1769:nth-child(4) { animation-delay: 0.2s; }
.heading-red-5183.backdrop_208b:hover .lite-1769:nth-child(5) { animation-delay: 0.25s; }
.heading-red-5183.backdrop_208b:hover .lite-1769: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) {
    .active-red-9ee6 {
        display: none !important;
    }
    
    .message_66f2 { display: inline-flex !important; }
}

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

    .message_66f2 { display: none !important; }
}

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

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

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

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

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

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

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

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

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


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

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

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


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

    .dropdown_pro_ddda a,
    .mask_04c4 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .gradient_gas_c1a8 {
        font-size: 0.6rem;
    }
    
    .cold_d4e2 {
        min-width: 190px;
    }
    
    .lite-1769 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .silver_e619 {
        gap: 0.625rem;
    }
    
    .silver_e619 .fixed_9816,
    .silver_e619 .notice-fresh-e83b {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .orange_9c24 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .dropdown_pro_ddda {
        gap: 0.625rem;
    }
    
    .dropdown_pro_ddda a,
    .mask_04c4 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .silver_e619 {
        gap: 0.875rem;
    }
    
    .silver_e619 .fixed_9816,
    .silver_e619 .notice-fresh-e83b {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .cold_d4e2 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .orange_9c24 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .dropdown_pro_ddda {
        gap: 0.875rem;
    }
    
    .dropdown_pro_ddda a,
    .mask_04c4 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .silver_e619 {
        gap: 1rem;
    }
    
    .silver_e619 .fixed_9816,
    .silver_e619 .notice-fresh-e83b {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .cold_d4e2 {
        min-width: 220px;
    }
    
    .lite-1769 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.basic_6ee9.complex_a6b6 {
    visibility: visible;
    opacity: 1;
}

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

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

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

.table-basic-baa8 {
    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);
}

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

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

.header-green-d7d9 {
    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;
}

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

.header-green-d7d9 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;
}

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

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

.tertiary_motion_63ce .content-3b88 {
    min-width: 0;
}

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

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

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

.aside_cold_ae19.fn-active-d620 {
    visibility: visible;
    opacity: 1;
}

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

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

.aside_cold_ae19.fn-active-d620 .notice-59d2 {
    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) {
    .aside_cold_ae19 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .active-ed9f {
        display: none;
    }

    .notice-59d2 {
        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;
    }

    .aside_cold_ae19.fn-active-d620 .notice-59d2 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

    /* Desktop: simplify dropdown header area */
    .bright-cade {
        display: none;
    }

    .footer-narrow-9846 {
        display: none;
    }

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

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

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

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

.tag-c4ff {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.aside_cold_ae19.fn-active-d620 .tag-c4ff:nth-child(1) {
    animation-delay: 0.05s;
}

.aside_cold_ae19.fn-active-d620 .tag-c4ff:nth-child(2) {
    animation-delay: 0.1s;
}

.aside_cold_ae19.fn-active-d620 .tag-c4ff:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

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

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

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

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

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

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

.first_b49b:hover .primary-center-4ba1,
.first_b49b:active .primary-center-4ba1 {
    color: #00d4aa;
}

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

.content-3b88 {
    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;
}

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

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

.content-3b88.fn-secondary-d620 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.content-3b88.fn-secondary-d620:hover,
.content-3b88.fn-secondary-d620:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .first_b49b {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .row_5eac {
        font-size: 1.875rem;
    }
    
    .primary-center-4ba1 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .notice-59d2 {
        padding: 1rem;
    }
    
    .bright-cade {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .solid_a6d0 {
        gap: 1rem;
    }
    
    .first_b49b {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .row_5eac {
        font-size: 2rem;
    }
    
    .primary-center-4ba1 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .notice-59d2 {
        padding: 1.25rem;
    }
    
    .bright-cade {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .bright-cade h3 {
        font-size: 1.25rem;
    }
    
    .solid_a6d0 {
        gap: 1.25rem;
    }
    
    .badge_ad4e {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .first_b49b {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .row_5eac {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .primary-center-4ba1 {
        font-size: 0.9375rem;
    }
    
    .content-3b88 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.fixed_9816,
.notice-fresh-e83b,
.layout-8d50,
.panel_4482,
.mask_eb56,
.highlight-under-5e68,
.chip_f89f {
    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) {
    .fixed_9816,
    .notice-fresh-e83b,
    .layout-8d50 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.fixed_9816,
.panel_4482,
.chip_f89f {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.fixed_9816:hover,
.panel_4482:hover,
.chip_f89f:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.notice-fresh-e83b,
.mask_eb56 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.notice-fresh-e83b:hover,
.mask_eb56:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.layout-8d50,
.highlight-under-5e68 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.layout-8d50:hover,
.highlight-under-5e68:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.panel_4482,
.mask_eb56 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.chip_f89f,
.highlight-under-5e68 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.center_2543 {
    z-index: 1;
}

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

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

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

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

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

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

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

.warm_a695 .full_da76 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.overlay_gold_7ac3 {
    position: relative;
}

.fixed_8263 {
    display: none;
}

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

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

    .label-0179 {
        display: none;
        margin-bottom: 0;
    }
}

.dropdown-7a53 {
    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
   ============================================ */
.hero-fast-4697 {
    margin-bottom: var(--spacing-xl);
}

.hero-fast-4697.hard_7687 {
    text-align: center;
}

.hero-fast-4697 h2 {
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

.item-full-9d4e {
    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));
}

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

.accent_black_da22:hover .item-full-9d4e img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.button_light_747b.image-0ab0 {
    background: var(--secondary-color);
}

.button_light_747b.hidden-affd {
    background: #ef4444;
}

.button_light_747b.carousel-warm-53e3 {
    background: var(--accent-color);
}

.logo-silver-03e4 {
    padding: var(--spacing-lg);
}

.logo-silver-03e4 h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.logo-silver-03e4 p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

.item-fast-182b {
    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);
}

.item-fast-182b:hover {
    background: rgba(0, 212, 170, 0.05);
    color: var(--primary-color);
}

.item-fast-182b.fn-active-d620 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.layout-cd25 {
    min-height: 400px;
}

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

.shadow-f5ab.fn-active-d620 {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

.old-2276 a {
    display: block;
    color: inherit;
}

.old-2276 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;
}

.slider-792a {
    padding: var(--spacing-md);
}

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

.avatar_4853,
.layout-0148 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.avatar_5405 {
    text-align: center;
}

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

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

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

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

.pattern-6c21 {
    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);
}

.pattern-6c21:hover {
    color: var(--primary-color);
}

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

.green_8187.fn-active-d620 .logo-simple-385c {
    transform: rotate(45deg);
}

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

.green_8187.fn-active-d620 .badge_silver_b992 {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

.video-312a::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%;
}

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

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

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

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

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

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

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

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

.fluid-fd8d ul {
    list-style: none;
}

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

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

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

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

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

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

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

.liquid-497b {
    text-align: center;
}

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

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .iron_73db {
        padding: var(--spacing-xl) 0;
    }
    
    .sidebar-steel-b065 {
        flex-direction: column;
    }
    
    .sidebar-steel-b065 > * {
        width: 100%;
    }
    
    .nav_2900 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .item-fast-182b {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .overlay_51a8 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .frame_first_534a {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .summary-fast-8267,
    .aside_cold_ae19,
    .video-312a,
    .nav_a464 {
        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 */
.label_f392 {
    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 */
.dropdown-7a53,
.accent_black_da22,
.old-2276,
.wrapper-9618 {
    will-change: transform;
}

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

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

.media-light-c448 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

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

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

.preview-light-86d1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

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

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

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

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

.content_warm_6772 {
    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
   ============================================ */
.disabled-west-00cc {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

.heading-over-60a4 {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box_5668 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) {
    .title-381a {
        grid-template-columns: 1fr;
    }
    
    .plasma-3315 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .accent_73ba {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hover-379b {
        grid-template-columns: 1fr;
    }
    
    .gradient_next_ee04 {
        grid-template-columns: 1fr;
    }
    
    .paragraph-70dc {
        grid-template-columns: 1fr;
    }
    
    .notification_stone_8137,
    .paragraph-0c84,
    .block_a172 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .accent_73ba {
        grid-template-columns: 1fr;
    }
    
    .accordion_c314 {
        font-size: 2rem;
    }
    
    .cool-0a0f {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.input-down-e7db,
.short-5969 {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.input-down-e7db h4,
.short-5969 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.input-down-e7db ul,
.short-5969 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input-down-e7db ul li,
.short-5969 ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

.input-down-e7db ul li strong {
    color: var(--text-primary);
}

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

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

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

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

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

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

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

.dim-1f14 {
    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);
}

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

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

.sidebar-6053 {
    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) {
    .carousel-narrow-ac61 {
        grid-template-columns: 1fr;
    }
    
    .static_cef3 {
        position: static;
    }
}

@media (max-width: 768px) {
    .texture-action-45a4 {
        grid-template-columns: 1fr;
    }
    
    .static_cef3,
    .input-down-e7db,
    .short-5969 {
        padding: var(--spacing-md);
    }
    
    .secondary-f8f5 {
        font-size: 2rem;
    }
}

/* css-noise: e6a5 */
.phantom-card-i7 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
