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

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

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

.alert_hot_9779.element_short_d4a8 {
    box-shadow: var(--shadow-lg);
}

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

.link_right_49a2 {
    padding: 0;
}

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

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

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

.action-6e04 {
    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);
}

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

@media (min-width: 768px) {
    .action-6e04 { font-size: 28px; }
    .soft-8ac4 { font-size: 11px; }
}

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

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

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

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

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

    .badge_56f6 { display: none !important; }
}

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

.card-fresh-50f8:hover .rough-f0c1 {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

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

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

.card-fresh-50f8:hover .iron-e5f1 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .rough-f0c1 {
        font-size: 28px;
    }
    
    .iron-e5f1 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .rough-f0c1 {
        font-size: 32px;
    }
    
    .iron-e5f1 {
        font-size: 12px;
    }
}

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

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

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

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

@media (min-width: 1024px) and (max-width: 1400px) {
    .texture-3367 a,
    .clean-0f88 {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.texture-3367 a:hover,
.clean-0f88:hover,
.image_3545.pagination-6532:hover > .clean-0f88 {
    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);
}

.texture-3367 a:active,
.clean-0f88:active {
    transform: translateY(0);
}

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

.image_3545.pagination-6532 {
    position: relative;
}

.clean-0f88 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.disabled-36db {
    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);
}

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

.image_3545.pagination-6532:hover .notice-lite-31b5 {
    transform: rotate(180deg);
    opacity: 1;
}

.image_3545.pagination-6532:focus-within .notice-lite-31b5,
.image_3545.pagination-6532.content_970b .notice-lite-31b5 {
    transform: rotate(180deg);
    opacity: 1;
}

.image_3545.pagination-6532:hover .disabled-36db {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.image_3545.pagination-6532:hover .description-pro-e859 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.image_3545.pagination-6532:focus-within .description-pro-e859,
.image_3545.pagination-6532.content_970b .description-pro-e859 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.image_3545.pagination-6532 .description-pro-e859:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.image_3545.pagination-6532:hover .full_2791 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.image_3545.pagination-6532:hover .full_2791:nth-child(1) { animation-delay: 0.05s; }
.image_3545.pagination-6532:hover .full_2791:nth-child(2) { animation-delay: 0.1s; }
.image_3545.pagination-6532:hover .full_2791:nth-child(3) { animation-delay: 0.15s; }
.image_3545.pagination-6532:hover .full_2791:nth-child(4) { animation-delay: 0.2s; }
.image_3545.pagination-6532:hover .full_2791:nth-child(5) { animation-delay: 0.25s; }
.image_3545.pagination-6532:hover .full_2791: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) {
    .search_7632 {
        display: none !important;
    }
    
    .badge_56f6 { display: inline-flex !important; }
}

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

    .badge_56f6 { display: none !important; }
}

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

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

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

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

.description-3e85: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);
}

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

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

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

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


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

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

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


/* Medium desktop: compact spacing */
@media (min-width: 1401px) and (max-width: 1600px) {
    .tabs-1fb0 {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .texture-3367 {
        gap: 0.375rem;
    }

    .texture-3367 a,
    .clean-0f88 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .notice-lite-31b5 {
        font-size: 0.6rem;
    }
    
    .description-pro-e859 {
        min-width: 190px;
    }
    
    .full_2791 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .shadow_glass_108e {
        gap: 0.625rem;
    }
    
    .shadow_glass_108e .video_dirty_d31b,
    .shadow_glass_108e .black_eeb6 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .tabs-1fb0 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .texture-3367 {
        gap: 0.625rem;
    }
    
    .texture-3367 a,
    .clean-0f88 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .shadow_glass_108e {
        gap: 0.875rem;
    }
    
    .shadow_glass_108e .video_dirty_d31b,
    .shadow_glass_108e .black_eeb6 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .description-pro-e859 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .tabs-1fb0 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .texture-3367 {
        gap: 0.875rem;
    }
    
    .texture-3367 a,
    .clean-0f88 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .shadow_glass_108e {
        gap: 1rem;
    }
    
    .shadow_glass_108e .video_dirty_d31b,
    .shadow_glass_108e .black_eeb6 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .description-pro-e859 {
        min-width: 220px;
    }
    
    .full_2791 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.brown_8e67.content_970b {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.video_5cdd .tiny_360d {
    min-width: 0;
}

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

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

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

.article-3918.fn-active-099c {
    visibility: visible;
    opacity: 1;
}

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

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

.article-3918.fn-active-099c .slider-81ad {
    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) {
    .article-3918 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .list-efc2 {
        display: none;
    }

    .slider-81ad {
        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;
    }

    .article-3918.fn-active-099c .slider-81ad {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

    .pro-a112 {
        display: none;
    }

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

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

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

.surface_1d9f 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 */
.hidden-pro-4c89 {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

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

.article-3918.fn-active-099c .preview_6f6c:nth-child(1) {
    animation-delay: 0.05s;
}

.article-3918.fn-active-099c .preview_6f6c:nth-child(2) {
    animation-delay: 0.1s;
}

.article-3918.fn-active-099c .preview_6f6c:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

.feature-stale-eb97 {
    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;
}

.feature-stale-eb97::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;
}

.feature-stale-eb97:hover::before,
.feature-stale-eb97:active::before {
    opacity: 1;
}

.feature-stale-eb97:hover,
.feature-stale-eb97: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);
}

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

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

.feature-stale-eb97:hover .light-62ba,
.feature-stale-eb97:active .light-62ba {
    color: #00d4aa;
}

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

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

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

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

.tiny_360d.fn-secondary-099c {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.tiny_360d.fn-secondary-099c:hover,
.tiny_360d.fn-secondary-099c:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .feature-stale-eb97 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .heading_green_456b {
        font-size: 1.875rem;
    }
    
    .light-62ba {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .slider-81ad {
        padding: 1rem;
    }
    
    .surface_1d9f {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .hidden-pro-4c89 {
        gap: 1rem;
    }
    
    .feature-stale-eb97 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .heading_green_456b {
        font-size: 2rem;
    }
    
    .light-62ba {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .slider-81ad {
        padding: 1.25rem;
    }
    
    .surface_1d9f {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .surface_1d9f h3 {
        font-size: 1.25rem;
    }
    
    .hidden-pro-4c89 {
        gap: 1.25rem;
    }
    
    .tooltip-735e {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .feature-stale-eb97 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .heading_green_456b {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .light-62ba {
        font-size: 0.9375rem;
    }
    
    .tiny_360d {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.video_dirty_d31b,
.black_eeb6,
.first_2389,
.sort_a120,
.clean_bc0b,
.element_soft_46be,
.video-5de1 {
    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) {
    .video_dirty_d31b,
    .black_eeb6,
    .first_2389 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.video_dirty_d31b,
.sort_a120,
.video-5de1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.video_dirty_d31b:hover,
.sort_a120:hover,
.video-5de1:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

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

.black_eeb6:hover,
.clean_bc0b:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.first_2389,
.element_soft_46be {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.first_2389:hover,
.element_soft_46be:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.sort_a120,
.clean_bc0b {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.video-5de1,
.element_soft_46be {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.wide-8994 {
    z-index: 1;
}

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

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

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

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

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

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

.avatar-over-8a3a {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.avatar-over-8a3a .secondary_85b5 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

.avatar-over-8a3a p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

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

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

.soft_ff1a {
    position: relative;
}

.sidebar-solid-d0b2 {
    display: none;
}

.input-white-f937 {
    display: block;
    margin-bottom: var(--spacing-md);
}

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

    .input-white-f937 {
        display: none;
        margin-bottom: 0;
    }
}

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

.box_current_6f0a.description_right_3f48 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.focus-0888.south-239e {
    background: var(--secondary-color);
}

.focus-0888.border-a7af {
    background: #ef4444;
}

.focus-0888.modal_dd2f {
    background: var(--accent-color);
}

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

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

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

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

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

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

.slider-dirty-8e6c:hover {
    gap: var(--spacing-xs);
}

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

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

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

.silver-86eb {
    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);
}

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

.silver-86eb.fn-active-099c {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.layout-16ee {
    min-height: 400px;
}

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

.down-b853.fn-active-099c {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-ca0e {
    text-align: center;
}

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

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

.focus-182d {
    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);
}

.focus-182d:hover {
    border-color: var(--primary-color);
}

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

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

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

.focus-182d.fn-active-099c .description_f0b4 {
    transform: rotate(45deg);
}

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

.focus-182d.fn-active-099c .active_glass_0feb {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

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

.hovered-5b98 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hovered-5b98 h2 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

.layout-72f3 ul {
    list-style: none;
}

.layout-72f3 ul li {
    margin-bottom: var(--spacing-xs);
}

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

.layout-72f3 ul li a:hover {
    color: var(--primary-color);
}

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

.white-5adc {
    display: flex;
    gap: var(--spacing-sm);
}

.white-5adc 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);
}

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

.under_154f {
    text-align: center;
}

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

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

.filter-stale-8184 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.filter-stale-8184 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);
}

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .center_b083 {
        padding: var(--spacing-xl) 0;
    }
    
    .lite_887a {
        flex-direction: column;
    }
    
    .lite_887a > * {
        width: 100%;
    }
    
    .smooth_54cb {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .silver-86eb {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .dropdown_c69c {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .link_upper_18c2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .alert_hot_9779,
    .article-3918,
    .shade_8b0e,
    .active_simple_0d43 {
        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 */
.alert_top_dcac {
    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 */
.selected_6260,
.breadcrumb_388e,
.over_7c2b,
.tooltip-cd36 {
    will-change: transform;
}

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

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

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

.tooltip-purple-31dd {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
}

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

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

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

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

.shadow-38fd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

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

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

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

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

.article_cold_8748 {
    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
   ============================================ */
.sidebar-action-941d {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

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

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

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

.footer-huge-ba65 {
    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);
}

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

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

.breadcrumb-silver-92a8 {
    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);
}

.breadcrumb-silver-92a8:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_fbc0 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) {
    .picture-fresh-45ac {
        grid-template-columns: 1fr;
    }
    
    .logo-becd {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .overlay_d0dc {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plasma_3299 {
        grid-template-columns: 1fr;
    }
    
    .complex-32a5 {
        grid-template-columns: 1fr;
    }
    
    .border_8415 {
        grid-template-columns: 1fr;
    }
    
    .warm-669d,
    .footer-huge-ba65,
    .narrow_737d {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .overlay_d0dc {
        grid-template-columns: 1fr;
    }
    
    .photo_74f9 {
        font-size: 2rem;
    }
    
    .hover-fluid-a884 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer_in_933e ul,
.status_old_9df4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

.badge-8741 {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.menu_narrow_a687 {
    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) {
    .highlight_brown_02fc {
        grid-template-columns: 1fr;
    }
    
    .aside_east_8e68 {
        position: static;
    }
}

@media (max-width: 768px) {
    .link-action-8a28 {
        grid-template-columns: 1fr;
    }
    
    .aside_east_8e68,
    .footer_in_933e,
    .status_old_9df4 {
        padding: var(--spacing-md);
    }
    
    .module-bottom-30bf {
        font-size: 2rem;
    }
}

/* css-noise: 92cd */
.ghost-box-e0 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
