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

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

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

.blue-2d8a.sidebar_a38e {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.blue-2d8a.title_08a0 {
    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-silver-aeb7 {
    padding: 0;
}

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

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

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

.active_b87c {
    font-size: 24px;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(0, 212, 170, 0.25);
}

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

@media (min-width: 768px) {
    .active_b87c { font-size: 28px; }
    .sidebar-stale-18de { font-size: 11px; }
}

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

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

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

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

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

    .header_c69d { display: none !important; }
}

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

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

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

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

.chip_iron_45b0:hover .accordion_warm_c296 {
    color: var(--text-secondary);
}

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

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

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

.table-over-9d8b li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.table-over-9d8b a,
.row-353a {
    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 */
.table-over-9d8b button.row-353a {
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .table-over-9d8b a,
    .row-353a {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.table-over-9d8b a:hover,
.row-353a:hover,
.popup-e36d.form_07a2:hover > .row-353a {
    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);
}

.table-over-9d8b a:active,
.row-353a:active {
    transform: translateY(0);
}

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

.popup-e36d.form_07a2 {
    position: relative;
}

.row-353a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

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

.popup-e36d.form_07a2:hover .black_9704 {
    transform: rotate(180deg);
    opacity: 1;
}

.popup-e36d.form_07a2:focus-within .black_9704,
.popup-e36d.form_07a2.avatar_lite_e303 .black_9704 {
    transform: rotate(180deg);
    opacity: 1;
}

.popup-e36d.form_07a2:hover .popup_red_bf90 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.popup-e36d.form_07a2:hover .column_under_419a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-e36d.form_07a2:focus-within .column_under_419a,
.popup-e36d.form_07a2.avatar_lite_e303 .column_under_419a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.description-fluid-695d {
    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;
}

.description-fluid-695d:last-child {
    border-bottom: none;
}

.description-fluid-695d: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;
}

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

.description-fluid-695d:hover::before {
    opacity: 1;
}

.description-fluid-695d:first-child {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.description-fluid-695d:last-child {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Keep dropdown open when hovering over it */
.popup-e36d.form_07a2 .column_under_419a:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.popup-e36d.form_07a2:hover .description-fluid-695d {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.popup-e36d.form_07a2:hover .description-fluid-695d:nth-child(1) { animation-delay: 0.05s; }
.popup-e36d.form_07a2:hover .description-fluid-695d:nth-child(2) { animation-delay: 0.1s; }
.popup-e36d.form_07a2:hover .description-fluid-695d:nth-child(3) { animation-delay: 0.15s; }
.popup-e36d.form_07a2:hover .description-fluid-695d:nth-child(4) { animation-delay: 0.2s; }
.popup-e36d.form_07a2:hover .description-fluid-695d:nth-child(5) { animation-delay: 0.25s; }
.popup-e36d.form_07a2:hover .description-fluid-695d: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) {
    .texture_purple_3b1a {
        display: none !important;
    }
    
    .header_c69d { display: inline-flex !important; }
}

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

    .header_c69d { display: none !important; }
}

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

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

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

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

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

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

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

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

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


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

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

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


/* Medium desktop: compact spacing */
@media (min-width: 1401px) and (max-width: 1600px) {
    .hard-d188 {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .table-over-9d8b {
        gap: 0.375rem;
    }

    .table-over-9d8b a,
    .row-353a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .black_9704 {
        font-size: 0.6rem;
    }
    
    .column_under_419a {
        min-width: 190px;
    }
    
    .description-fluid-695d {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .list_plasma_44ce {
        gap: 0.625rem;
    }
    
    .list_plasma_44ce .hovered-023d,
    .list_plasma_44ce .south-ed9f {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .hard-d188 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .table-over-9d8b {
        gap: 0.625rem;
    }
    
    .table-over-9d8b a,
    .row-353a {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .list_plasma_44ce {
        gap: 0.875rem;
    }
    
    .list_plasma_44ce .hovered-023d,
    .list_plasma_44ce .south-ed9f {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .column_under_419a {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .hard-d188 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .table-over-9d8b {
        gap: 0.875rem;
    }
    
    .table-over-9d8b a,
    .row-353a {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .list_plasma_44ce {
        gap: 1rem;
    }
    
    .list_plasma_44ce .hovered-023d,
    .list_plasma_44ce .south-ed9f {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .column_under_419a {
        min-width: 220px;
    }
    
    .description-fluid-695d {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.logo_light_f6ed.avatar_lite_e303 {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

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

.accent-dark-ef7f {
    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;
}

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

.accent-dark-ef7f 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;
}

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

.disabled-top-c0db {
    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);
}

.disabled-top-c0db .module_light_0510 {
    min-width: 0;
}

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

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

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

.sidebar_thick_9ec3.fn-active-81b1 {
    visibility: visible;
    opacity: 1;
}

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

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

.sidebar_thick_9ec3.fn-active-81b1 .content-297b {
    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) {
    .sidebar_thick_9ec3 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .background_black_750c {
        display: none;
    }

    .content-297b {
        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;
    }

    .sidebar_thick_9ec3.fn-active-81b1 .content-297b {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

    .middle-32e0 {
        display: none;
    }

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

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

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

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

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

.sidebar_thick_9ec3.fn-active-81b1 .thumbnail_mini_0baf:nth-child(1) {
    animation-delay: 0.05s;
}

.sidebar_thick_9ec3.fn-active-81b1 .thumbnail_mini_0baf:nth-child(2) {
    animation-delay: 0.1s;
}

.sidebar_thick_9ec3.fn-active-81b1 .thumbnail_mini_0baf:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

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

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

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

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

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

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

.gas_d796:hover .highlight-yellow-70a2,
.gas_d796:active .highlight-yellow-70a2 {
    color: #00d4aa;
}

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

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

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

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

.module_light_0510.fn-secondary-81b1 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.module_light_0510.fn-secondary-81b1:hover,
.module_light_0510.fn-secondary-81b1:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .gas_d796 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .description-active-54fe {
        font-size: 1.875rem;
    }
    
    .highlight-yellow-70a2 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .content-297b {
        padding: 1rem;
    }
    
    .status_458e {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .stone-7d02 {
        gap: 1rem;
    }
    
    .gas_d796 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .description-active-54fe {
        font-size: 2rem;
    }
    
    .highlight-yellow-70a2 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .content-297b {
        padding: 1.25rem;
    }
    
    .status_458e {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .status_458e h3 {
        font-size: 1.25rem;
    }
    
    .stone-7d02 {
        gap: 1.25rem;
    }
    
    .complex-5ff6 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .gas_d796 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .description-active-54fe {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .highlight-yellow-70a2 {
        font-size: 0.9375rem;
    }
    
    .module_light_0510 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.hovered-023d,
.south-ed9f,
.summary-fluid-cd2f,
.hero-medium-dcfe,
.box-58cb,
.notice_78bc,
.message_70fe {
    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) {
    .hovered-023d,
    .south-ed9f,
    .summary-fluid-cd2f {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.hovered-023d,
.hero-medium-dcfe,
.message_70fe {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.hovered-023d:hover,
.hero-medium-dcfe:hover,
.message_70fe:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.south-ed9f,
.box-58cb {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.south-ed9f:hover,
.box-58cb:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.summary-fluid-cd2f,
.notice_78bc {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.summary-fluid-cd2f:hover,
.notice_78bc:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.hero-medium-dcfe,
.box-58cb {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.message_70fe,
.notice_78bc {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

.picture-stale-93a8 {
    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
   ============================================ */
.focused-ab0e {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.wood_5228 {
    z-index: 1;
}

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

.pagination-363b {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
}

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

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

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

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

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

.left_5dde .down_b129 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.article-last-053b {
    position: relative;
}

.paragraph-complex-83b9 {
    display: none;
}

.pattern-simple-2b6f {
    display: block;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .paragraph-complex-83b9 {
        display: block;
    }

    .pattern-simple-2b6f {
        display: none;
        margin-bottom: 0;
    }
}

.left_b4ac {
    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
   ============================================ */
.pressed-3323 {
    margin-bottom: var(--spacing-xl);
}

.pressed-3323.title_76cf {
    text-align: center;
}

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

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

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

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

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

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

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

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

.media-warm-20f3 {
    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));
}

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

.lower_c09a:hover .media-warm-20f3 img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.text-0965.thumbnail_pro_6623 {
    background: var(--secondary-color);
}

.text-0965.mask_center_6534 {
    background: #ef4444;
}

.text-0965.hard-89a7 {
    background: var(--accent-color);
}

.alert-short-ef60 {
    padding: var(--spacing-lg);
}

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

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

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

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

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

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

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

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

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

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

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

.backdrop_6152.fn-active-81b1 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.secondary_d64c {
    min-height: 400px;
}

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

.pro_0d3a.fn-active-81b1 {
    display: block;
}

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

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

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

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

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

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

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

.hero-plasma-8dc4 img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.thumbnail-11e4 {
    padding: var(--spacing-md);
}

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

.photo_ad76,
.pagination_c00a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.element-1240 {
    text-align: center;
}

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

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

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

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

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

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

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

.banner_e4fc.fn-active-81b1 .nav_selected_cc20 {
    transform: rotate(45deg);
}

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

.banner_e4fc.fn-active-81b1 .last_9081 {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer_2aa9 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.module-static-938f {
    text-align: center;
}

.shadow-north-0962 {
    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);
}

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .focused-ab0e {
        padding: var(--spacing-xl) 0;
    }
    
    .tertiary_61fa {
        flex-direction: column;
    }
    
    .tertiary_61fa > * {
        width: 100%;
    }
    
    .list-blue-27b0 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .backdrop_6152 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .out-cb5c {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .image_bdb2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .blue-2d8a,
    .sidebar_thick_9ec3,
    .block_glass_d335,
    .chip_f9d6 {
        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 */
.backdrop-basic-d0e4 {
    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 */
.left_b4ac,
.lower_c09a,
.banner_4b81,
.hard_bf31 {
    will-change: transform;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-wood-e01b {
    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
   ============================================ */
.outer-9ef4 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

.paragraph-glass-5be3 {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

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

.accent-yellow-660a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

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

.pagination-first-ef60 {
    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;
}

.pagination-first-ef60::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);
}

.pagination-first-ef60:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

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

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

.yellow-cc8d > 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;
}

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

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

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

.fast_a1e4 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) {
    .mask-33d8 {
        grid-template-columns: 1fr;
    }
    
    .frame_350b {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .gradient_static_6ae0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-eb8b {
        grid-template-columns: 1fr;
    }
    
    .accordion_bfde {
        grid-template-columns: 1fr;
    }
    
    .medium-eb2a {
        grid-template-columns: 1fr;
    }
    
    .fluid_5ef2,
    .dim_f2b2,
    .yellow-cc8d {
        padding: var(--spacing-md);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-iron-2a2d,
.list_3f7c {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.tabs-iron-2a2d h4,
.list_3f7c h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.tabs-iron-2a2d ul,
.list_3f7c ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-iron-2a2d ul li,
.list_3f7c ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

.tabs-iron-2a2d ul li strong {
    color: var(--text-primary);
}

.tabs-iron-2a2d ul li a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.tabs-iron-2a2d ul li a:hover {
    color: var(--primary-light);
}

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

.notice-5bcc {
    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;
}

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

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

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

.pagination-paper-f001 {
    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-82bd {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.caption_west_b2d4 {
    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) {
    .input-2242 {
        grid-template-columns: 1fr;
    }
    
    .notice-5bcc {
        position: static;
    }
}

@media (max-width: 768px) {
    .pressed-2bfa {
        grid-template-columns: 1fr;
    }
    
    .notice-5bcc,
    .tabs-iron-2a2d,
    .list_3f7c {
        padding: var(--spacing-md);
    }
    
    .list_rough_77be {
        font-size: 2rem;
    }
}

/* css-noise: 7893 */
.phantom-card-a9 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
