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

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

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

.detail_64f8.texture-c45d {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.detail_64f8.icon-iron-5fb7 {
    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; }
}

.shade_3e9a {
    padding: 0;
}

.link-fast-843f {
    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 */
.link-fast-843f > * {
    min-width: 0;
}

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

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

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

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

@media (min-width: 768px) {
    .section_iron_dedc { font-size: 28px; }
    .first_786c { font-size: 11px; }
}

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

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

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

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

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

    .module-fa95 { display: none !important; }
}

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

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

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

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

.image_c6fa:hover .layout_4c73 {
    color: var(--text-secondary);
}

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

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

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

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

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

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

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

.footer_ca6a a:hover,
.active_c560:hover,
.element-39fa.preview-c979:hover > .active_c560 {
    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);
}

.footer_ca6a a:active,
.active_c560:active {
    transform: translateY(0);
}

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

.element-39fa.preview-c979 {
    position: relative;
}

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

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

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

.element-39fa.preview-c979:hover .fixed-d402 {
    transform: rotate(180deg);
    opacity: 1;
}

.element-39fa.preview-c979:focus-within .fixed-d402,
.element-39fa.preview-c979.dynamic-0bcc .fixed-d402 {
    transform: rotate(180deg);
    opacity: 1;
}

.element-39fa.preview-c979:hover .main_0921 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.element-39fa.preview-c979:hover .background_cold_427a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.element-39fa.preview-c979:focus-within .background_cold_427a,
.element-39fa.preview-c979.dynamic-0bcc .background_cold_427a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.liquid-9015:last-child {
    border-bottom: none;
}

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

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

.liquid-9015:hover::before {
    opacity: 1;
}

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

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

/* Keep dropdown open when hovering over it */
.element-39fa.preview-c979 .background_cold_427a:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.element-39fa.preview-c979:hover .liquid-9015 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.element-39fa.preview-c979:hover .liquid-9015:nth-child(1) { animation-delay: 0.05s; }
.element-39fa.preview-c979:hover .liquid-9015:nth-child(2) { animation-delay: 0.1s; }
.element-39fa.preview-c979:hover .liquid-9015:nth-child(3) { animation-delay: 0.15s; }
.element-39fa.preview-c979:hover .liquid-9015:nth-child(4) { animation-delay: 0.2s; }
.element-39fa.preview-c979:hover .liquid-9015:nth-child(5) { animation-delay: 0.25s; }
.element-39fa.preview-c979:hover .liquid-9015: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) {
    .input_red_384b {
        display: none !important;
    }
    
    .module-fa95 { display: inline-flex !important; }
}

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

    .module-fa95 { display: none !important; }
}

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

.search-motion-f502 a {
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

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

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

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

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

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


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

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

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


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

    .footer_ca6a a,
    .active_c560 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .fixed-d402 {
        font-size: 0.6rem;
    }
    
    .background_cold_427a {
        min-width: 190px;
    }
    
    .liquid-9015 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .search-motion-f502 {
        gap: 0.625rem;
    }
    
    .search-motion-f502 .small-7e73,
    .search-motion-f502 .thumbnail_2b45 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .link-fast-843f {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .footer_ca6a {
        gap: 0.625rem;
    }
    
    .footer_ca6a a,
    .active_c560 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .search-motion-f502 {
        gap: 0.875rem;
    }
    
    .search-motion-f502 .small-7e73,
    .search-motion-f502 .thumbnail_2b45 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .background_cold_427a {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .link-fast-843f {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .footer_ca6a {
        gap: 0.875rem;
    }
    
    .footer_ca6a a,
    .active_c560 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .search-motion-f502 {
        gap: 1rem;
    }
    
    .search-motion-f502 .small-7e73,
    .search-motion-f502 .thumbnail_2b45 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .background_cold_427a {
        min-width: 220px;
    }
    
    .liquid-9015 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.icon-action-ea8b.dynamic-0bcc {
    visibility: visible;
    opacity: 1;
}

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

.content-8d0b {
    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;
}

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

.secondary-hovered-ab93 {
    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);
}

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

.description-2e0a {
    padding: 0.875rem;
    overflow-y: auto;
}

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

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

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

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

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

.modal_43ad .shadow_8d32 {
    min-width: 0;
}

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

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

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

.dim-a348.fn-active-7d9e {
    visibility: visible;
    opacity: 1;
}

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

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

.dim-a348.fn-active-7d9e .message-rough-bbce {
    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) {
    .dim-a348 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .hidden_2583 {
        display: none;
    }

    .message-rough-bbce {
        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;
    }

    .dim-a348.fn-active-7d9e .message-rough-bbce {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

    .tertiary-e5f3 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;
    }

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

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

    .main_light_2f62 {
        display: none;
    }

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

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

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

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

.north-aa45 {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.dim-a348.fn-active-7d9e .north-aa45:nth-child(1) {
    animation-delay: 0.05s;
}

.dim-a348.fn-active-7d9e .north-aa45:nth-child(2) {
    animation-delay: 0.1s;
}

.dim-a348.fn-active-7d9e .north-aa45:nth-child(3) {
    animation-delay: 0.15s;
}

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

.clean-99a0 {
    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 */
.item-warm-68fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.progress-small-4d3d {
    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;
}

.progress-small-4d3d::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;
}

.progress-small-4d3d:hover::before,
.progress-small-4d3d:active::before {
    opacity: 1;
}

.progress-small-4d3d:hover,
.progress-small-4d3d: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);
}

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

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

.progress-small-4d3d:hover .over_f2ab,
.progress-small-4d3d:active .over_f2ab {
    color: #00d4aa;
}

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

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

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

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

.shadow_8d32.fn-secondary-7d9e {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.shadow_8d32.fn-secondary-7d9e:hover,
.shadow_8d32.fn-secondary-7d9e:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .progress-small-4d3d {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .nav_prev_7df4 {
        font-size: 1.875rem;
    }
    
    .over_f2ab {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .message-rough-bbce {
        padding: 1rem;
    }
    
    .active_baaf {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .up_0755 {
        gap: 1rem;
    }
    
    .progress-small-4d3d {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .nav_prev_7df4 {
        font-size: 2rem;
    }
    
    .over_f2ab {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .message-rough-bbce {
        padding: 1.25rem;
    }
    
    .active_baaf {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .active_baaf h3 {
        font-size: 1.25rem;
    }
    
    .up_0755 {
        gap: 1.25rem;
    }
    
    .clean-99a0 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .progress-small-4d3d {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .nav_prev_7df4 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .over_f2ab {
        font-size: 0.9375rem;
    }
    
    .shadow_8d32 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.small-7e73,
.thumbnail_2b45,
.box-center-d50c,
.input_6991,
.accent-830e,
.hidden_under_1bfd,
.active-99b8 {
    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) {
    .small-7e73,
    .thumbnail_2b45,
    .box-center-d50c {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.small-7e73,
.input_6991,
.active-99b8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.small-7e73:hover,
.input_6991:hover,
.active-99b8:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.thumbnail_2b45,
.accent-830e {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.thumbnail_2b45:hover,
.accent-830e:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.box-center-d50c,
.hidden_under_1bfd {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.box-center-d50c:hover,
.hidden_under_1bfd:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.input_6991,
.accent-830e {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.active-99b8,
.hidden_under_1bfd {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

.pressed-46ab::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;
}

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

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

.message_29e7 {
    z-index: 1;
}

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

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

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

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

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

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

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

.frame_091b .easy-5ff3 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.first-ee62 {
    position: relative;
}

.section_fd0b {
    display: none;
}

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

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

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

.new-d816 {
    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
   ============================================ */
.label_red_a37c {
    margin-bottom: var(--spacing-xl);
}

.label_red_a37c.element-stale-414f {
    text-align: center;
}

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

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

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

.image-copper-924f {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

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

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

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

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

.card-9f44 {
    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));
}

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

.red_6dbb:hover .card-9f44 img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.content_7a55.layout-blue-cc0d {
    background: var(--secondary-color);
}

.content_7a55.photo-warm-32a0 {
    background: #ef4444;
}

.content_7a55.accent-5c9a {
    background: var(--accent-color);
}

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

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

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

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

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

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

.over-8a21:hover {
    gap: var(--spacing-xs);
}

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

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

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

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

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

.surface_next_5269.fn-active-7d9e {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.column-dynamic-156a {
    min-height: 400px;
}

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

.light-95eb.fn-active-7d9e {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus-tall-529a {
    padding: var(--spacing-md);
}

.focus-tall-529a h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.layout-mini-8f04,
.primary_2f16 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.panel-ad24 {
    text-align: center;
}

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

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

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

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

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

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

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

.footer_d4f0.fn-active-7d9e .slider-11d4 {
    transform: rotate(45deg);
}

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

.footer_d4f0.fn-active-7d9e .layout-top-decb {
    max-height: 1000px;
}

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

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

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

.image-black-80c1 {
    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);
}

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

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

.image-black-80c1 h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.image-black-80c1 p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Final CTA
   ============================================ */
.lower-1b99 {
    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-1b99::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%;
}

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

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

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

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

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

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

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

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

.feature_c91c ul {
    list-style: none;
}

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

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

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

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

.outline-lite-6786 {
    display: flex;
    gap: var(--spacing-sm);
}

.outline-lite-6786 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);
}

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

.button-copper-3d7e {
    text-align: center;
}

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

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

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

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

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

.sidebar-small-4cf1 {
    color: var(--accent-color) !important;
    font-weight: var(--font-weight-medium);
}

/* ============================================
   Utility Classes
   ============================================ */
.element-stale-414f {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .pressed-46ab {
        padding: var(--spacing-xl) 0;
    }
    
    .clean_f20a {
        flex-direction: column;
    }
    
    .clean_f20a > * {
        width: 100%;
    }
    
    .notice-7a33 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .surface_next_5269 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .block_simple_50d5 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .menu_57f6 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .detail_64f8,
    .dim-a348,
    .lower-1b99,
    .pattern_2612 {
        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 */
.in_35e0 {
    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 */
.new-d816,
.red_6dbb,
.content_liquid_d013,
.image-black-80c1 {
    will-change: transform;
}

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

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

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

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

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

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

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

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

.action-0a89 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-cf02:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

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

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

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

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

.breadcrumb-390f {
    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);
}

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

.breadcrumb-390f 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) {
    .bronze-c105 {
        grid-template-columns: 1fr;
    }
    
    .preview-0378 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .menu_silver_890c {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .description-iron-4485 {
        grid-template-columns: 1fr;
    }
    
    .grid_0012 {
        grid-template-columns: 1fr;
    }
    
    .large-34d7 {
        grid-template-columns: 1fr;
    }
    
    .stone_351e,
    .media_2945,
    .badge_gas_43d8 {
        padding: var(--spacing-md);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop_thick_d13d ul,
.detail_07e6 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

.element-over-4a84 {
    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;
}

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

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

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

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

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

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

.video-3a3a {
    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) {
    .steel_a9f8 {
        grid-template-columns: 1fr;
    }
    
    .element-over-4a84 {
        position: static;
    }
}

@media (max-width: 768px) {
    .background_61ef {
        grid-template-columns: 1fr;
    }
    
    .element-over-4a84,
    .backdrop_thick_d13d,
    .detail_07e6 {
        padding: var(--spacing-md);
    }
    
    .tertiary-up-3308 {
        font-size: 2rem;
    }
}

/* css-noise: e455 */
.widget-item-j3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
