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

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

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

.complex-b888.picture-ac8d {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.complex-b888.orange-943b {
    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; }
}

.notice_9e03 {
    padding: 0;
}

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

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

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

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

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

@media (min-width: 768px) {
    .notification_out_01ad { font-size: 28px; }
    .section-c62e { font-size: 11px; }
}

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

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

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

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

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

    .backdrop_cold_588b { display: none !important; }
}

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

.black-59e8:hover .search-top-6597 {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

.search-top-6597 {
    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;
}

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

.black-59e8:hover .main-7191 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .search-top-6597 {
        font-size: 28px;
    }
    
    .main-7191 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .search-top-6597 {
        font-size: 32px;
    }
    
    .main-7191 {
        font-size: 12px;
    }
}

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

.photo-cold-0c98 li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

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

@media (min-width: 1024px) and (max-width: 1400px) {
    .photo-cold-0c98 a,
    .caption_lower_1823 {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.photo-cold-0c98 a:hover,
.caption_lower_1823:hover,
.container-ce07.steel-176c:hover > .caption_lower_1823 {
    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);
}

.photo-cold-0c98 a:active,
.caption_lower_1823:active {
    transform: translateY(0);
}

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

.container-ce07.steel-176c {
    position: relative;
}

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

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

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

.container-ce07.steel-176c:hover .bottom-e91d {
    transform: rotate(180deg);
    opacity: 1;
}

.container-ce07.steel-176c:focus-within .bottom-e91d,
.container-ce07.steel-176c.tertiary-stone-9d3f .bottom-e91d {
    transform: rotate(180deg);
    opacity: 1;
}

.container-ce07.steel-176c:hover .gallery_ea7b {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.container-ce07.steel-176c:hover .sidebar_basic_30dc {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.container-ce07.steel-176c:focus-within .sidebar_basic_30dc,
.container-ce07.steel-176c.tertiary-stone-9d3f .sidebar_basic_30dc {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.container-ce07.steel-176c .sidebar_basic_30dc:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.container-ce07.steel-176c:hover .progress_74c9 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.container-ce07.steel-176c:hover .progress_74c9:nth-child(1) { animation-delay: 0.05s; }
.container-ce07.steel-176c:hover .progress_74c9:nth-child(2) { animation-delay: 0.1s; }
.container-ce07.steel-176c:hover .progress_74c9:nth-child(3) { animation-delay: 0.15s; }
.container-ce07.steel-176c:hover .progress_74c9:nth-child(4) { animation-delay: 0.2s; }
.container-ce07.steel-176c:hover .progress_74c9:nth-child(5) { animation-delay: 0.25s; }
.container-ce07.steel-176c:hover .progress_74c9: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) {
    .in_576e {
        display: none !important;
    }
    
    .backdrop_cold_588b { display: inline-flex !important; }
}

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

    .backdrop_cold_588b { display: none !important; }
}

.title-last-26e5 {
    display: none;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

.title-last-26e5 a {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .title-last-26e5 {
        display: flex;
    }
}

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

.filter-04a9: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);
}

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

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

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

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


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

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

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


/* Medium desktop: compact spacing */
@media (min-width: 1401px) and (max-width: 1600px) {
    .dim-5d92 {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .photo-cold-0c98 {
        gap: 0.375rem;
    }

    .photo-cold-0c98 a,
    .caption_lower_1823 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .bottom-e91d {
        font-size: 0.6rem;
    }
    
    .sidebar_basic_30dc {
        min-width: 190px;
    }
    
    .progress_74c9 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .title-last-26e5 {
        gap: 0.625rem;
    }
    
    .title-last-26e5 .photo-rough-d2cc,
    .title-last-26e5 .sidebar-lower-1cab {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .dim-5d92 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .photo-cold-0c98 {
        gap: 0.625rem;
    }
    
    .photo-cold-0c98 a,
    .caption_lower_1823 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .title-last-26e5 {
        gap: 0.875rem;
    }
    
    .title-last-26e5 .photo-rough-d2cc,
    .title-last-26e5 .sidebar-lower-1cab {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .sidebar_basic_30dc {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .dim-5d92 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .photo-cold-0c98 {
        gap: 0.875rem;
    }
    
    .photo-cold-0c98 a,
    .caption_lower_1823 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .title-last-26e5 {
        gap: 1rem;
    }
    
    .title-last-26e5 .photo-rough-d2cc,
    .title-last-26e5 .sidebar-lower-1cab {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .sidebar_basic_30dc {
        min-width: 220px;
    }
    
    .progress_74c9 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.header-slow-ab39.tertiary-stone-9d3f {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

.message-969a {
    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);
}

.message-969a .slow-f5f1 {
    min-width: 0;
}

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

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

/* Overlay Background */
.row-lite-8aaa {
    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;
}

.row-lite-8aaa.fn-active-078b {
    visibility: visible;
    opacity: 1;
}

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

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

.row-lite-8aaa.fn-active-078b .surface-8f1e {
    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) {
    .row-lite-8aaa {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .pattern-19fc {
        display: none;
    }

    .surface-8f1e {
        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;
    }

    .row-lite-8aaa.fn-active-078b .surface-8f1e {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

    /* Desktop: simplify dropdown header area */
    .plasma-d312 {
        display: none;
    }

    .video_a457 {
        display: none;
    }

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

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

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

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

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

.row-lite-8aaa.fn-active-078b .slow_579c:nth-child(1) {
    animation-delay: 0.05s;
}

.row-lite-8aaa.fn-active-078b .slow_579c:nth-child(2) {
    animation-delay: 0.1s;
}

.row-lite-8aaa.fn-active-078b .slow_579c:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

.slow-66c3 {
    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;
}

.slow-66c3::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;
}

.slow-66c3:hover::before,
.slow-66c3:active::before {
    opacity: 1;
}

.slow-66c3:hover,
.slow-66c3: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);
}

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

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

.slow-66c3:hover .button-5e2d,
.slow-66c3:active .button-5e2d {
    color: #00d4aa;
}

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

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

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

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

.slow-f5f1.fn-secondary-078b {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.slow-f5f1.fn-secondary-078b:hover,
.slow-f5f1.fn-secondary-078b:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .slow-66c3 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .item-9bd6 {
        font-size: 1.875rem;
    }
    
    .button-5e2d {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .surface-8f1e {
        padding: 1rem;
    }
    
    .plasma-d312 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .sidebar_cb34 {
        gap: 1rem;
    }
    
    .slow-66c3 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .item-9bd6 {
        font-size: 2rem;
    }
    
    .button-5e2d {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .surface-8f1e {
        padding: 1.25rem;
    }
    
    .plasma-d312 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .plasma-d312 h3 {
        font-size: 1.25rem;
    }
    
    .sidebar_cb34 {
        gap: 1.25rem;
    }
    
    .slider_0dc5 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .slow-66c3 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .item-9bd6 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .button-5e2d {
        font-size: 0.9375rem;
    }
    
    .slow-f5f1 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.photo-rough-d2cc,
.sidebar-lower-1cab,
.detail_3af6,
.gradient-warm-cee0,
.wrapper-hard-541a,
.input_hard_65d3,
.lower_9638 {
    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) {
    .photo-rough-d2cc,
    .sidebar-lower-1cab,
    .detail_3af6 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.photo-rough-d2cc,
.gradient-warm-cee0,
.lower_9638 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.photo-rough-d2cc:hover,
.gradient-warm-cee0:hover,
.lower_9638:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.sidebar-lower-1cab,
.wrapper-hard-541a {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.sidebar-lower-1cab:hover,
.wrapper-hard-541a:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.detail_3af6,
.input_hard_65d3 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.detail_3af6:hover,
.input_hard_65d3:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.gradient-warm-cee0,
.wrapper-hard-541a {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

.slider-over-442a::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;
}

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

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

.active_1899 {
    z-index: 1;
}

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

.shade-smooth-0de7 {
    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);
}

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

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

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

.gradient-focused-8b4e {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

.gallery-3652 .link-41b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.button_327f {
    position: relative;
}

.medium-f8ff {
    display: none;
}

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

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

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

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

.header_dark_290f.tabs_a17e {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.widget_next_4161:hover .text_silver_a3e5 img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

.main-motion-0fc9 {
    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;
}

.main-motion-0fc9.list-bronze-d9fe {
    background: var(--secondary-color);
}

.main-motion-0fc9.secondary_current_eaba {
    background: #ef4444;
}

.main-motion-0fc9.grid_c41f {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.banner_upper_c563.fn-active-078b {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.banner-soft-15eb {
    min-height: 400px;
}

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

.narrow-01a2.fn-active-078b {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-small-a00b,
.south-1204 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.pagination_cool_e247 {
    text-align: center;
}

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

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

.notice-simple-5a2d {
    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);
}

.notice-simple-5a2d:hover {
    border-color: var(--primary-color);
}

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

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

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

.notice-simple-5a2d.fn-active-078b .menu-ad45 {
    transform: rotate(45deg);
}

.carousel-motion-2bad {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.notice-simple-5a2d.fn-active-078b .carousel-motion-2bad {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

.content-solid-b6d5::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%;
}

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

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

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

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

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

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

.card-pressed-16e5 {
    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);
}

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

.alert-east-a0a3 ul {
    list-style: none;
}

.alert-east-a0a3 ul li {
    margin-bottom: var(--spacing-xs);
}

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

.alert-east-a0a3 ul li a:hover {
    color: var(--primary-color);
}

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

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

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

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

.panel_b05a {
    text-align: center;
}

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

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .slider-over-442a {
        padding: var(--spacing-xl) 0;
    }
    
    .layout-137f {
        flex-direction: column;
    }
    
    .layout-137f > * {
        width: 100%;
    }
    
    .wood_da9e {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .banner_upper_c563 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .sort_down_6bb7 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .card-pressed-16e5 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .complex-b888,
    .row-lite-8aaa,
    .content-solid-b6d5,
    .row_aba8 {
        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 */
.surface-1aa5 {
    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 */
.caption_e8ac,
.widget_next_4161,
.old_5110,
.texture_a21b {
    will-change: transform;
}

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

.gradient-61d9 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.hovered-6e33 {
    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
   ============================================ */
.hot-82a7 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-up-4110 {
    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);
}

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

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

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

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

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

.dropdown-0c08 {
    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;
}

.dropdown-0c08::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);
}

.dropdown-0c08:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

.up-483f {
    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;
}

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

.up-483f > 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;
}

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

.column-2adb {
    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);
}

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

.column-2adb 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) {
    .old_22c4 {
        grid-template-columns: 1fr;
    }
    
    .gradient-61d9 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .widget_hovered_20b7 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .block_477b {
        grid-template-columns: 1fr;
    }
    
    .title-dffc {
        grid-template-columns: 1fr;
    }
    
    .hard-c321 {
        grid-template-columns: 1fr;
    }
    
    .warm_ab8e,
    .container-iron-ba5b,
    .up-483f {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .widget_hovered_20b7 {
        grid-template-columns: 1fr;
    }
    
    .texture_out_7bc3 {
        font-size: 2rem;
    }
    
    .message-3bb8 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.logo_south_0210,
.picture-north-67fa {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.logo_south_0210 h4,
.picture-north-67fa h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.logo_south_0210 ul,
.picture-north-67fa ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo_south_0210 ul li,
.picture-north-67fa ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

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

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

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

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

.surface-8fb9 {
    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;
}

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

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

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

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

.menu-fluid-10fd {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.gradient-6892 {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Responsive for Responsible Gaming Section */
@media (max-width: 1024px) {
    .carousel-easy-aca7 {
        grid-template-columns: 1fr;
    }
    
    .surface-8fb9 {
        position: static;
    }
}

@media (max-width: 768px) {
    .dark-1868 {
        grid-template-columns: 1fr;
    }
    
    .surface-8fb9,
    .logo_south_0210,
    .picture-north-67fa {
        padding: var(--spacing-md);
    }
    
    .smooth-0c2b {
        font-size: 2rem;
    }
}

/* css-noise: cb03 */
.widget-item-c1 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.1;
}
