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

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

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

.sort_65c5.carousel-over-7ad1 {
    box-shadow: var(--shadow-lg);
}

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

.preview_aa57 {
    padding: 0;
}

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

.photo-6c1a {
    grid-template-columns: auto 1fr auto;
}

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

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

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

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

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

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

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

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

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

    .border-f3bc { display: none !important; }
}

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

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

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

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

.overlay_last_d02f:hover .red_7a8c {
    color: var(--text-secondary);
}

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

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

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

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

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

.focus-0aaf a,
.chip-yellow-f61a {
    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 */
.focus-0aaf button.chip-yellow-f61a {
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .focus-0aaf a,
    .chip-yellow-f61a {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.focus-0aaf a:hover,
.chip-yellow-f61a:hover,
.sort-up-55d3.component-east-4508:hover > .chip-yellow-f61a {
    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);
}

.focus-0aaf a:active,
.chip-yellow-f61a:active {
    transform: translateY(0);
}

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

.sort-up-55d3.component-east-4508 {
    position: relative;
}

.chip-yellow-f61a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

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

.sort-up-55d3.component-east-4508:hover .box-full-47d8 {
    transform: rotate(180deg);
    opacity: 1;
}

.sort-up-55d3.component-east-4508:focus-within .box-full-47d8,
.sort-up-55d3.component-east-4508.slow-1bf1 .box-full-47d8 {
    transform: rotate(180deg);
    opacity: 1;
}

.sort-up-55d3.component-east-4508:hover .iron-6378 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.sort-up-55d3.component-east-4508:hover .heading-1cd1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-up-55d3.component-east-4508:focus-within .heading-1cd1,
.sort-up-55d3.component-east-4508.slow-1bf1 .heading-1cd1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dim-83f4 {
    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;
}

.dim-83f4:last-child {
    border-bottom: none;
}

.dim-83f4: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;
}

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

.dim-83f4:hover::before {
    opacity: 1;
}

.dim-83f4:first-child {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.dim-83f4:last-child {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Keep dropdown open when hovering over it */
.sort-up-55d3.component-east-4508 .heading-1cd1:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.sort-up-55d3.component-east-4508:hover .dim-83f4 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.sort-up-55d3.component-east-4508:hover .dim-83f4:nth-child(1) { animation-delay: 0.05s; }
.sort-up-55d3.component-east-4508:hover .dim-83f4:nth-child(2) { animation-delay: 0.1s; }
.sort-up-55d3.component-east-4508:hover .dim-83f4:nth-child(3) { animation-delay: 0.15s; }
.sort-up-55d3.component-east-4508:hover .dim-83f4:nth-child(4) { animation-delay: 0.2s; }
.sort-up-55d3.component-east-4508:hover .dim-83f4:nth-child(5) { animation-delay: 0.25s; }
.sort-up-55d3.component-east-4508:hover .dim-83f4: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) {
    .label_77ab {
        display: none !important;
    }
    
    .border-f3bc { display: inline-flex !important; }
}

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

    .border-f3bc { display: none !important; }
}

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

.chip-active-fc30 a {
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

.thumbnail-33fa: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);
}

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

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

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

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


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

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

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


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

    .focus-0aaf a,
    .chip-yellow-f61a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .box-full-47d8 {
        font-size: 0.6rem;
    }
    
    .heading-1cd1 {
        min-width: 190px;
    }
    
    .dim-83f4 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .chip-active-fc30 {
        gap: 0.625rem;
    }
    
    .chip-active-fc30 .summary-b509,
    .chip-active-fc30 .status_37c6 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .sort_upper_31c5 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .focus-0aaf {
        gap: 0.625rem;
    }
    
    .focus-0aaf a,
    .chip-yellow-f61a {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .chip-active-fc30 {
        gap: 0.875rem;
    }
    
    .chip-active-fc30 .summary-b509,
    .chip-active-fc30 .status_37c6 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .heading-1cd1 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .sort_upper_31c5 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .focus-0aaf {
        gap: 0.875rem;
    }
    
    .focus-0aaf a,
    .chip-yellow-f61a {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .chip-active-fc30 {
        gap: 1rem;
    }
    
    .chip-active-fc30 .summary-b509,
    .chip-active-fc30 .status_37c6 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .heading-1cd1 {
        min-width: 220px;
    }
    
    .dim-83f4 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.green-623f.slow-1bf1 {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

.west-6c5c {
    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);
}

.west-6c5c .icon-medium-fbfe {
    min-width: 0;
}

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

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

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

.heading-dim-7386.fn-active-2c53 {
    visibility: visible;
    opacity: 1;
}

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

/* Content Container */
.module-left-29c1 {
    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);
}

.heading-dim-7386.fn-active-2c53 .module-left-29c1 {
    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) {
    .heading-dim-7386 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .cool-40e1 {
        display: none;
    }

    .module-left-29c1 {
        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;
    }

    .heading-dim-7386.fn-active-2c53 .module-left-29c1 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

    .wood-4339 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;
    }

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

    /* Desktop: simplify dropdown header area */
    .content-upper-d93e {
        display: none;
    }

    .glass_90df {
        display: none;
    }

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

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

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

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

.module-aae3 {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.heading-dim-7386.fn-active-2c53 .module-aae3:nth-child(1) {
    animation-delay: 0.05s;
}

.heading-dim-7386.fn-active-2c53 .module-aae3:nth-child(2) {
    animation-delay: 0.1s;
}

.heading-dim-7386.fn-active-2c53 .module-aae3:nth-child(3) {
    animation-delay: 0.15s;
}

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

.gas-7029 {
    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 */
.focus-inner-0f29 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

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

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

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

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

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

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

.pagination_glass_d1b0:hover .selected_cf93,
.pagination_glass_d1b0:active .selected_cf93 {
    color: #00d4aa;
}

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

.icon-medium-fbfe {
    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;
}

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

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

.icon-medium-fbfe.fn-secondary-2c53 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.icon-medium-fbfe.fn-secondary-2c53:hover,
.icon-medium-fbfe.fn-secondary-2c53:active {
    background: rgba(0, 212, 170, 0.1);
}

/* Scrollbar for Mobile Nav */
.module-left-29c1::-webkit-scrollbar {
    width: 6px;
}

.module-left-29c1::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

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

.module-left-29c1::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.7);
}

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

@media (min-width: 425px) {
    .module-left-29c1 {
        padding: 1rem;
    }
    
    .content-upper-d93e {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .modal_2392 {
        gap: 1rem;
    }
    
    .pagination_glass_d1b0 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .hidden_dedd {
        font-size: 2rem;
    }
    
    .selected_cf93 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .module-left-29c1 {
        padding: 1.25rem;
    }
    
    .content-upper-d93e {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .content-upper-d93e h3 {
        font-size: 1.25rem;
    }
    
    .modal_2392 {
        gap: 1.25rem;
    }
    
    .gas-7029 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .pagination_glass_d1b0 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .hidden_dedd {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .selected_cf93 {
        font-size: 0.9375rem;
    }
    
    .icon-medium-fbfe {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.summary-b509,
.status_37c6,
.background_bronze_cb47,
.dim-2930,
.north_a14b,
.blue_b98b,
.badge_west_9573 {
    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) {
    .summary-b509,
    .status_37c6,
    .background_bronze_cb47 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.summary-b509,
.dim-2930,
.badge_west_9573 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.summary-b509:hover,
.dim-2930:hover,
.badge_west_9573:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

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

.status_37c6:hover,
.north_a14b:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.background_bronze_cb47,
.blue_b98b {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.background_bronze_cb47:hover,
.blue_b98b:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.dim-2930,
.north_a14b {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

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

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

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

.upper_aac7 {
    z-index: 1;
}

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

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

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

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

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

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

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

.hero_gold_fa5d .tertiary_full_8d36 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

.filter-gas-141d {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.gallery-right-9caf {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.background_east_d5bf {
    position: relative;
}

.primary-eec5 {
    display: none;
}

.soft-73fe {
    display: block;
    margin-bottom: var(--spacing-md);
}

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

    .soft-73fe {
        display: none;
        margin-bottom: 0;
    }
}

.component-bright-ac45 {
    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
   ============================================ */
.wood_99a1 {
    margin-bottom: var(--spacing-xl);
}

.wood_99a1.feature-fe33 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.aside-8b12:hover .background_gas_d1a0 img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.section_c5ad.cold-6da7 {
    background: var(--secondary-color);
}

.section_c5ad.info_5c93 {
    background: #ef4444;
}

.section_c5ad.photo_gas_dca7 {
    background: var(--accent-color);
}

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

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

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

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

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

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

.preview-1e31:hover {
    gap: var(--spacing-xs);
}

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

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

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

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

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

.modal_bronze_479f.fn-active-2c53 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.tertiary_wide_5728 {
    min-height: 400px;
}

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

.grid-b784.fn-active-2c53 {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.last-f354,
.tertiary_green_24f0 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.gallery-yellow-01c2 {
    text-align: center;
}

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

.article-east-5945 {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.full_ec1c.fn-active-2c53 .pattern-fast-8d6c {
    transform: rotate(45deg);
}

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

.full_ec1c.fn-active-2c53 .grid-active-0a07 {
    max-height: 1000px;
}

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

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

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

.block-north-d422 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture_1b58 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.lower-6082 {
    text-align: center;
}

.picture_black_aec0 {
    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_black_aec0 span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

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

.texture-right-55e2 {
    color: var(--accent-color) !important;
    font-weight: var(--font-weight-medium);
}

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .button_advanced_b92b {
        padding: var(--spacing-xl) 0;
    }
    
    .filter-gas-141d {
        flex-direction: column;
    }
    
    .filter-gas-141d > * {
        width: 100%;
    }
    
    .section-bc11 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal_bronze_479f {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .pattern-e665 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .soft_b730 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .sort_65c5,
    .heading-dim-7386,
    .border-caac,
    .motion-3b01 {
        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 */
.east_6fe0 {
    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 */
.component-bright-ac45,
.aside-8b12,
.frame_87c4,
.block-north-d422 {
    will-change: transform;
}

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

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

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

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

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

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

.hero_6593 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.modal-clean-1509 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

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

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

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

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

.module_gas_485b {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ============================================
   E-E-A-T: Company Expertise Section
   ============================================ */
.active-b43f {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

.first-679d {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-c1d9 > 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;
}

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

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

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

.fresh-2323 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) {
    .section-305b {
        grid-template-columns: 1fr;
    }
    
    .backdrop-eda8 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hover-outer-03a1 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .outer-515a {
        grid-template-columns: 1fr;
    }
    
    .new-5b79 {
        grid-template-columns: 1fr;
    }
    
    .tag_selected_c728 {
        grid-template-columns: 1fr;
    }
    
    .white_7d72,
    .green-6311,
    .container-c1d9 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hover-outer-03a1 {
        grid-template-columns: 1fr;
    }
    
    .module-fluid-ce27 {
        font-size: 2rem;
    }
    
    .panel-fec6 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.medium_d5eb h4,
.border-fast-bf19 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.medium_d5eb ul,
.border-fast-bf19 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

.paragraph-orange-19d4 {
    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;
}

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

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

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

.complex-0c9a {
    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);
}

.prev-98be {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.button-9bd3 {
    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) {
    .warm_0ed8 {
        grid-template-columns: 1fr;
    }
    
    .paragraph-orange-19d4 {
        position: static;
    }
}

@media (max-width: 768px) {
    .box-in-03e7 {
        grid-template-columns: 1fr;
    }
    
    .paragraph-orange-19d4,
    .medium_d5eb,
    .border-fast-bf19 {
        padding: var(--spacing-md);
    }
    
    .black_2b71 {
        font-size: 2rem;
    }
}

/* css-noise: ee13 */
.ghost-box-z0 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
