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

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

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

.full_5400.smooth-a285 {
    box-shadow: var(--shadow-lg);
}

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

.summary-8abd {
    padding: 0;
}

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

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

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

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

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

@media (min-width: 768px) {
    .wood_0c16 { font-size: 28px; }
    .north-360d { font-size: 11px; }
}

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

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

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

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

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

    .border-fresh-bacf { display: none !important; }
}

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

.accent-6f53:hover .breadcrumb-1de2 {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

.breadcrumb-1de2 {
    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;
}

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

.accent-6f53:hover .form-e234 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .breadcrumb-1de2 {
        font-size: 28px;
    }
    
    .form-e234 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .breadcrumb-1de2 {
        font-size: 32px;
    }
    
    .form-e234 {
        font-size: 12px;
    }
}

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

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

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

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

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

.block_dirty_3ec3 a:hover,
.notification_78fc:hover,
.widget-fixed-f30d.badge_31ca:hover > .notification_78fc {
    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);
}

.block_dirty_3ec3 a:active,
.notification_78fc:active {
    transform: translateY(0);
}

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

.widget-fixed-f30d.badge_31ca {
    position: relative;
}

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

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

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

.widget-fixed-f30d.badge_31ca:hover .hover_9f41 {
    transform: rotate(180deg);
    opacity: 1;
}

.widget-fixed-f30d.badge_31ca:focus-within .hover_9f41,
.widget-fixed-f30d.badge_31ca.row-tiny-b515 .hover_9f41 {
    transform: rotate(180deg);
    opacity: 1;
}

.widget-fixed-f30d.badge_31ca:hover .right_80f9 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.widget-fixed-f30d.badge_31ca:hover .panel-top-7ecd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.widget-fixed-f30d.badge_31ca:focus-within .panel-top-7ecd,
.widget-fixed-f30d.badge_31ca.row-tiny-b515 .panel-top-7ecd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.widget-fixed-f30d.badge_31ca .panel-top-7ecd:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.widget-fixed-f30d.badge_31ca:hover .nav_current_e4f9 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.widget-fixed-f30d.badge_31ca:hover .nav_current_e4f9:nth-child(1) { animation-delay: 0.05s; }
.widget-fixed-f30d.badge_31ca:hover .nav_current_e4f9:nth-child(2) { animation-delay: 0.1s; }
.widget-fixed-f30d.badge_31ca:hover .nav_current_e4f9:nth-child(3) { animation-delay: 0.15s; }
.widget-fixed-f30d.badge_31ca:hover .nav_current_e4f9:nth-child(4) { animation-delay: 0.2s; }
.widget-fixed-f30d.badge_31ca:hover .nav_current_e4f9:nth-child(5) { animation-delay: 0.25s; }
.widget-fixed-f30d.badge_31ca:hover .nav_current_e4f9: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) {
    .blue_850c {
        display: none !important;
    }
    
    .border-fresh-bacf { display: inline-flex !important; }
}

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

    .border-fresh-bacf { display: none !important; }
}

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

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

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

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

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

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

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

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

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


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

.panel_e9b9 {
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile: transform hamburger into X when drawer is open */
@media (max-width: 767px) {
    .border-fresh-bacf[aria-expanded="true"] .panel_e9b9:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .border-fresh-bacf[aria-expanded="true"] .panel_e9b9:nth-child(2) {
        opacity: 0;
    }
    .border-fresh-bacf[aria-expanded="true"] .panel_e9b9:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

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


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

    .block_dirty_3ec3 a,
    .notification_78fc {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .hover_9f41 {
        font-size: 0.6rem;
    }
    
    .panel-top-7ecd {
        min-width: 190px;
    }
    
    .nav_current_e4f9 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .active_7f1d {
        gap: 0.625rem;
    }
    
    .active_7f1d .button-pro-727a,
    .active_7f1d .header-66a8 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .notification-copper-af59 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .block_dirty_3ec3 {
        gap: 0.625rem;
    }
    
    .block_dirty_3ec3 a,
    .notification_78fc {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .active_7f1d {
        gap: 0.875rem;
    }
    
    .active_7f1d .button-pro-727a,
    .active_7f1d .header-66a8 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .panel-top-7ecd {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .notification-copper-af59 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .block_dirty_3ec3 {
        gap: 0.875rem;
    }
    
    .block_dirty_3ec3 a,
    .notification_78fc {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .active_7f1d {
        gap: 1rem;
    }
    
    .active_7f1d .button-pro-727a,
    .active_7f1d .header-66a8 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .panel-top-7ecd {
        min-width: 220px;
    }
    
    .nav_current_e4f9 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.message_hard_4a05.row-tiny-b515 {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.fixed_73a8 .hover-77bb {
    min-width: 0;
}

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

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

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

.disabled-8319.fn-active-c818 {
    visibility: visible;
    opacity: 1;
}

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

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

.disabled-8319.fn-active-c818 .green-04b1 {
    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) {
    .disabled-8319 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .sort_f155 {
        display: none;
    }

    .green-04b1 {
        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;
    }

    .disabled-8319.fn-active-c818 .green-04b1 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

    .description-purple-2c0c {
        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;
    }

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

    .description-purple-2c0c 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;
    }

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

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

    .box_steel_251d {
        display: none;
    }

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

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

/* Header */
.status_67e2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.625rem 0.5rem 0.75rem;
    margin-bottom: 0.875rem;
    border-bottom: 2px solid rgba(0, 212, 170, 0.3);
}

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

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

.disabled-8319.fn-active-c818 .nav_fresh_6f44:nth-child(1) {
    animation-delay: 0.05s;
}

.disabled-8319.fn-active-c818 .nav_fresh_6f44:nth-child(2) {
    animation-delay: 0.1s;
}

.disabled-8319.fn-active-c818 .nav_fresh_6f44:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

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

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

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

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

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

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

.orange_7c5c:hover .text-action-b6b4,
.orange_7c5c:active .text-action-b6b4 {
    color: #00d4aa;
}

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

.hover-77bb {
    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;
}

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

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

.hover-77bb.fn-secondary-c818 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.hover-77bb.fn-secondary-c818:hover,
.hover-77bb.fn-secondary-c818:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .orange_7c5c {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .tabs-outer-30a8 {
        font-size: 1.875rem;
    }
    
    .text-action-b6b4 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .green-04b1 {
        padding: 1rem;
    }
    
    .status_67e2 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .progress_6e0b {
        gap: 1rem;
    }
    
    .orange_7c5c {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .tabs-outer-30a8 {
        font-size: 2rem;
    }
    
    .text-action-b6b4 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .green-04b1 {
        padding: 1.25rem;
    }
    
    .status_67e2 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .status_67e2 h3 {
        font-size: 1.25rem;
    }
    
    .progress_6e0b {
        gap: 1.25rem;
    }
    
    .complex_114e {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .orange_7c5c {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .tabs-outer-30a8 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .text-action-b6b4 {
        font-size: 0.9375rem;
    }
    
    .hover-77bb {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.button-pro-727a,
.header-66a8,
.list_8f9b,
.over-1192,
.description_e9e3,
.pro_efda,
.mask-3f0e {
    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) {
    .button-pro-727a,
    .header-66a8,
    .list_8f9b {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.button-pro-727a,
.over-1192,
.mask-3f0e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.button-pro-727a:hover,
.over-1192:hover,
.mask-3f0e:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.header-66a8,
.description_e9e3 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.header-66a8:hover,
.description_e9e3:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.list_8f9b,
.pro_efda {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.list_8f9b:hover,
.pro_efda:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.over-1192,
.description_e9e3 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.mask-3f0e,
.pro_efda {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.form_full_b699 {
    z-index: 1;
}

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

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

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

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

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

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

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

.action_592f .pattern-6630 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.smooth-952b {
    position: relative;
}

.table_bronze_813d {
    display: none;
}

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

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

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

.title-4440 {
    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
   ============================================ */
.title-54ca {
    margin-bottom: var(--spacing-xl);
}

.title-54ca.description-699c {
    text-align: center;
}

.title-54ca h2 {
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

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

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

.media-down-4e85:hover .slider_f02a img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.status_lower_44e2.carousel_cf71 {
    background: var(--secondary-color);
}

.status_lower_44e2.fixed_e869 {
    background: #ef4444;
}

.status_lower_44e2.middle-8f47 {
    background: var(--accent-color);
}

.north-5edb {
    padding: var(--spacing-lg);
}

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

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

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

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

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

.aside-7f80:hover {
    gap: var(--spacing-xs);
}

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

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

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

.fixed-58b3 {
    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);
}

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

.fixed-58b3.fn-active-c818 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.static-b75a {
    min-height: 400px;
}

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

.west_4172.fn-active-c818 {
    display: block;
}

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

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

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

.image-7dae h3 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

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

.header-cold-c144 a {
    display: block;
    color: inherit;
}

.header-cold-c144 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;
}

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

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

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

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

.aside-f4d3 {
    text-align: center;
}

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

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

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

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

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

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

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

.easy_1c70.fn-active-c818 .media-warm-aefd {
    transform: rotate(45deg);
}

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

.easy_1c70.fn-active-c818 .info_soft_f29a {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-right-49ad {
    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);
}

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

.yellow_53ac ul {
    list-style: none;
}

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

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

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

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

.hover-0af3 {
    display: flex;
    gap: var(--spacing-sm);
}

.hover-0af3 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);
}

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

.header_dim_8f2d {
    text-align: center;
}

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

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

.smooth-64fc {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.smooth-64fc 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);
}

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

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

/* ============================================
   Utility Classes
   ============================================ */
.description-699c {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .narrow-ca82 {
        padding: var(--spacing-xl) 0;
    }
    
    .aside_7100 {
        flex-direction: column;
    }
    
    .aside_7100 > * {
        width: 100%;
    }
    
    .purple_cde9 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .fixed-58b3 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .outer-fefc {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .description-right-49ad {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .full_5400,
    .disabled-8319,
    .video-f2d3,
    .item_next_f9f2 {
        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 */
.pagination-e8b8 {
    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 */
.title-4440,
.media-down-4e85,
.header-cold-c144,
.focus-ed9e {
    will-change: transform;
}

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

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

.article-large-fa2b {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

.sidebar-purple-b5a3 {
    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
   ============================================ */
.input-current-08f6 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.mask-medium-492a {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

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

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

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

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

.input-warm-3731 {
    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);
}

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

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

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

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

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

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

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

.element-47ed {
    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);
}

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

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

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

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

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

.gallery_6244 {
    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_6244::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_6244:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

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

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

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

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

.sidebar-11c5 {
    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);
}

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

.sidebar-11c5 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) {
    .active_pro_531e {
        grid-template-columns: 1fr;
    }
    
    .shadow_south_83c7 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .video_ad53 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gold_bc62 {
        grid-template-columns: 1fr;
    }
    
    .bottom_027c {
        grid-template-columns: 1fr;
    }
    
    .paper_c04b {
        grid-template-columns: 1fr;
    }
    
    .feature_338f,
    .hidden_b69c,
    .active_slow_ef12 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .video_ad53 {
        grid-template-columns: 1fr;
    }
    
    .active_42fd {
        font-size: 2rem;
    }
    
    .message-old-c61d {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.over_729f ul,
.text-3282 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

.surface_5fdb {
    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_5fdb h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

.filter-ab87 {
    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) {
    .disabled_5a2d {
        grid-template-columns: 1fr;
    }
    
    .surface_5fdb {
        position: static;
    }
}

@media (max-width: 768px) {
    .primary-west-303b {
        grid-template-columns: 1fr;
    }
    
    .surface_5fdb,
    .over_729f,
    .text-3282 {
        padding: var(--spacing-md);
    }
    
    .middle_eb9b {
        font-size: 2rem;
    }
}

/* css-noise: 9650 */
.widget-item-z4 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.1;
}
