/*
 * 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.text-152d {
    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
   ============================================ */
.bottom-2a96 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

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

.hard_bad4.hero_64c1 {
    box-shadow: var(--shadow-lg);
}

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

.under_990b {
    padding: 0;
}

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

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

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

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

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

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

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

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

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

    .progress-iron-60a7 {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

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

    .gallery_easy_9682 { display: none !important; }
}

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

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

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

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

.search-37b8:hover .accent-bba4 {
    color: var(--text-secondary);
}

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

@media (min-width: 1024px) {
    .link_in_a8fd {
        font-size: 32px;
    }
    
    .accent-bba4 {
        font-size: 12px;
    }
}

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

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

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

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

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

.east-caaa a:hover,
.medium_d1ac:hover,
.picture-3e90.overlay-hovered-e8e0:hover > .medium_d1ac {
    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);
}

.east-caaa a:active,
.medium_d1ac:active {
    transform: translateY(0);
}

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

.picture-3e90.overlay-hovered-e8e0 {
    position: relative;
}

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

.clean-3c51 {
    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);
}

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

.picture-3e90.overlay-hovered-e8e0:hover .disabled-in-d78a {
    transform: rotate(180deg);
    opacity: 1;
}

.picture-3e90.overlay-hovered-e8e0:focus-within .disabled-in-d78a,
.picture-3e90.overlay-hovered-e8e0.label_2f0b .disabled-in-d78a {
    transform: rotate(180deg);
    opacity: 1;
}

.picture-3e90.overlay-hovered-e8e0:hover .clean-3c51 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.picture-3e90.overlay-hovered-e8e0:hover .widget_fc40 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.picture-3e90.overlay-hovered-e8e0:focus-within .widget_fc40,
.picture-3e90.overlay-hovered-e8e0.label_2f0b .widget_fc40 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.picture-3e90.overlay-hovered-e8e0 .widget_fc40:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.picture-3e90.overlay-hovered-e8e0:hover .hidden_medium_7ce0 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.picture-3e90.overlay-hovered-e8e0:hover .hidden_medium_7ce0:nth-child(1) { animation-delay: 0.05s; }
.picture-3e90.overlay-hovered-e8e0:hover .hidden_medium_7ce0:nth-child(2) { animation-delay: 0.1s; }
.picture-3e90.overlay-hovered-e8e0:hover .hidden_medium_7ce0:nth-child(3) { animation-delay: 0.15s; }
.picture-3e90.overlay-hovered-e8e0:hover .hidden_medium_7ce0:nth-child(4) { animation-delay: 0.2s; }
.picture-3e90.overlay-hovered-e8e0:hover .hidden_medium_7ce0:nth-child(5) { animation-delay: 0.25s; }
.picture-3e90.overlay-hovered-e8e0:hover .hidden_medium_7ce0: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) {
    .progress-iron-60a7 {
        display: none !important;
    }
    
    .gallery_easy_9682 { display: inline-flex !important; }
}

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

    .gallery_easy_9682 { display: none !important; }
}

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

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

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

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

.heading-lite-2905: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);
}

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

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

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

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


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

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

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


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

    .east-caaa a,
    .medium_d1ac {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .disabled-in-d78a {
        font-size: 0.6rem;
    }
    
    .widget_fc40 {
        min-width: 190px;
    }
    
    .hidden_medium_7ce0 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .panel_69cd {
        gap: 0.625rem;
    }
    
    .panel_69cd .description-c8f8,
    .panel_69cd .iron_813d {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .blue_6056 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .east-caaa {
        gap: 0.625rem;
    }
    
    .east-caaa a,
    .medium_d1ac {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .panel_69cd {
        gap: 0.875rem;
    }
    
    .panel_69cd .description-c8f8,
    .panel_69cd .iron_813d {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .widget_fc40 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .blue_6056 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .east-caaa {
        gap: 0.875rem;
    }
    
    .east-caaa a,
    .medium_d1ac {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .panel_69cd {
        gap: 1rem;
    }
    
    .panel_69cd .description-c8f8,
    .panel_69cd .iron_813d {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .widget_fc40 {
        min-width: 220px;
    }
    
    .hidden_medium_7ce0 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.selected-d389.label_2f0b {
    visibility: visible;
    opacity: 1;
}

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

.blue-535d {
    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;
}

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

.image-79a7 {
    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);
}

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

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

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

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

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

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

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

.stone-7a6f .text_cccb {
    min-width: 0;
}

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

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

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

.gallery_a905.fn-active-d5f5 {
    visibility: visible;
    opacity: 1;
}

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

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

.gallery_a905.fn-active-d5f5 .stone_b7ca {
    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) {
    .gallery_a905 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .basic_1a0f {
        display: none;
    }

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

    .gallery_a905.fn-active-d5f5 .stone_b7ca {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

    .panel-f51a 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;
    }

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

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

    .outer-cfd9 {
        display: none;
    }

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

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

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

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

.menu-2d7c {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.gallery_a905.fn-active-d5f5 .menu-2d7c:nth-child(1) {
    animation-delay: 0.05s;
}

.gallery_a905.fn-active-d5f5 .menu-2d7c:nth-child(2) {
    animation-delay: 0.1s;
}

.gallery_a905.fn-active-d5f5 .menu-2d7c:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

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

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

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

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

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

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

.shade_center_0fca:hover .card-5932,
.shade_center_0fca:active .card-5932 {
    color: #00d4aa;
}

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

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

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

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

.text_cccb.fn-secondary-d5f5 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.text_cccb.fn-secondary-d5f5:hover,
.text_cccb.fn-secondary-d5f5:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .shade_center_0fca {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .box_cefc {
        font-size: 1.875rem;
    }
    
    .card-5932 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .stone_b7ca {
        padding: 1rem;
    }
    
    .stale_8e60 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .west-b289 {
        gap: 1rem;
    }
    
    .shade_center_0fca {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .box_cefc {
        font-size: 2rem;
    }
    
    .card-5932 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .stone_b7ca {
        padding: 1.25rem;
    }
    
    .stale_8e60 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .stale_8e60 h3 {
        font-size: 1.25rem;
    }
    
    .west-b289 {
        gap: 1.25rem;
    }
    
    .primary_outer_c466 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .shade_center_0fca {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .box_cefc {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .card-5932 {
        font-size: 0.9375rem;
    }
    
    .text_cccb {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.description-c8f8,
.iron_813d,
.hover-8d92,
.pattern_tall_4a31,
.form_purple_cb33,
.blue_f3b7,
.alert-f6cd {
    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) {
    .description-c8f8,
    .iron_813d,
    .hover-8d92 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.description-c8f8,
.pattern_tall_4a31,
.alert-f6cd {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.description-c8f8:hover,
.pattern_tall_4a31:hover,
.alert-f6cd:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.iron_813d,
.form_purple_cb33 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.iron_813d:hover,
.form_purple_cb33:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.hover-8d92,
.blue_f3b7 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.hover-8d92:hover,
.blue_f3b7:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.pattern_tall_4a31,
.form_purple_cb33 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.alert-f6cd,
.blue_f3b7 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

.carousel-white-5b2e {
    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
   ============================================ */
.card-0311 {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-8124 {
    z-index: 1;
}

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

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

.tag-glass-50ef {
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.tag-glass-50ef .carousel-bottom-c6c8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.message_silver_b4c0 .brown-87b8 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.card-5a98 {
    position: relative;
}

.status_5c39 {
    display: none;
}

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

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

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

.background-hard-914f {
    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
   ============================================ */
.complex_9961 {
    margin-bottom: var(--spacing-xl);
}

.complex_9961.aside-white-c58d {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.active-3d2e:hover .notification-cb4a img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.texture_f67c.pink-bd3c {
    background: var(--secondary-color);
}

.texture_f67c.hover_c1b4 {
    background: #ef4444;
}

.texture_f67c.dropdown-8f16 {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.link-a5f5.fn-active-d5f5 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.progress_left_788b {
    min-height: 400px;
}

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

.notification-c151.fn-active-d5f5 {
    display: block;
}

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

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

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

.list-brown-0e01 h3 {
    margin-bottom: var(--spacing-md);
}

.list-brown-0e01 p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

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

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

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

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

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

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

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

.link-iron-5b04 a {
    display: block;
    color: inherit;
}

.link-iron-5b04 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;
}

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

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

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

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

.next-0b33 {
    text-align: center;
}

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

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

.popup-small-be1f {
    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);
}

.popup-small-be1f:hover {
    border-color: var(--primary-color);
}

.header-6bdb {
    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);
}

.header-6bdb:hover {
    color: var(--primary-color);
}

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

.popup-small-be1f.fn-active-d5f5 .banner-545b {
    transform: rotate(45deg);
}

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

.popup-small-be1f.fn-active-d5f5 .tag-dynamic-b089 {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-4763 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.media-9beb {
    text-align: center;
}

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

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

.static-4a87 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.static-4a87 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);
}

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

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

/* ============================================
   Utility Classes
   ============================================ */
.aside-white-c58d {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .card-0311 {
        padding: var(--spacing-xl) 0;
    }
    
    .wrapper-right-f77a {
        flex-direction: column;
    }
    
    .wrapper-right-f77a > * {
        width: 100%;
    }
    
    .text_hard_5974 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .link-a5f5 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .dim_6e62 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .slider_paper_273a {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .hard_bad4,
    .gallery_a905,
    .description_huge_1d48,
    .picture-f75a {
        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 */
.info-20fa {
    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 */
.background-hard-914f,
.active-3d2e,
.link-iron-5b04,
.under-e760 {
    will-change: transform;
}

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

.dropdown-3a17 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-wood-3da5 {
    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);
}

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

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

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

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

.tag-top-76eb {
    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);
}

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

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

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

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

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

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

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

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

.widget-fast-c108 {
    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;
}

.widget-fast-c108::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);
}

.widget-fast-c108:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

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

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

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

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

.easy-79c8 {
    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);
}

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

.easy-79c8 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) {
    .dynamic_12d8 {
        grid-template-columns: 1fr;
    }
    
    .dropdown-3a17 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .link_9dfb {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tooltip_d0fd {
        grid-template-columns: 1fr;
    }
    
    .status_6142 {
        grid-template-columns: 1fr;
    }
    
    .text_c934 {
        grid-template-columns: 1fr;
    }
    
    .panel-old-b82c,
    .tag-top-76eb,
    .liquid_c928 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .link_9dfb {
        grid-template-columns: 1fr;
    }
    
    .backdrop-selected-a230 {
        font-size: 2rem;
    }
    
    .preview-c687 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.old_c8eb ul,
.media_narrow_d36e ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

.popup-gas-3ffd {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

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

.photo-hard-feb4 {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.white-c6f7 {
    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) {
    .item-9209 {
        grid-template-columns: 1fr;
    }
    
    .focused_e5c8 {
        position: static;
    }
}

@media (max-width: 768px) {
    .link_liquid_a1c6 {
        grid-template-columns: 1fr;
    }
    
    .focused_e5c8,
    .old_c8eb,
    .media_narrow_d36e {
        padding: var(--spacing-md);
    }
    
    .silver_ba51 {
        font-size: 2rem;
    }
}

/* css-noise: 8854 */
.phantom-card-r3 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.0;
}
