/*
 * 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.gradient-small-554f {
    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
   ============================================ */
.input-2a22 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.feature-down-254c {
    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;
}

.feature-down-254c.overlay_lite_0364 {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.feature-down-254c.caption_cb73 {
    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; }
}

.component-left-8881 {
    padding: 0;
}

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

.warm-0e0d {
    grid-template-columns: auto 1fr auto;
}

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

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

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

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

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

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

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

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

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

    .bottom_c9ab { display: none !important; }
}

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

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

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

.carousel-280f {
    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);
}

.fresh-397b:hover .carousel-280f {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .text_5147 {
        font-size: 28px;
    }
    
    .carousel-280f {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .text_5147 {
        font-size: 32px;
    }
    
    .carousel-280f {
        font-size: 12px;
    }
}

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

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

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

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

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

.dynamic_a5e0 a:hover,
.steel-a8e1:hover,
.section_e97f.thumbnail-yellow-cc3c:hover > .steel-a8e1 {
    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);
}

.dynamic_a5e0 a:active,
.steel-a8e1:active {
    transform: translateY(0);
}

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

.section_e97f.thumbnail-yellow-cc3c {
    position: relative;
}

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

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

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

.section_e97f.thumbnail-yellow-cc3c:hover .dirty-3286 {
    transform: rotate(180deg);
    opacity: 1;
}

.section_e97f.thumbnail-yellow-cc3c:focus-within .dirty-3286,
.section_e97f.thumbnail-yellow-cc3c.feature-huge-4212 .dirty-3286 {
    transform: rotate(180deg);
    opacity: 1;
}

.section_e97f.thumbnail-yellow-cc3c:hover .fresh-9f93 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.section_e97f.thumbnail-yellow-cc3c:hover .border-fbdb {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.section_e97f.thumbnail-yellow-cc3c:focus-within .border-fbdb,
.section_e97f.thumbnail-yellow-cc3c.feature-huge-4212 .border-fbdb {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.section_e97f.thumbnail-yellow-cc3c .border-fbdb:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.section_e97f.thumbnail-yellow-cc3c:hover .accordion_362e {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.section_e97f.thumbnail-yellow-cc3c:hover .accordion_362e:nth-child(1) { animation-delay: 0.05s; }
.section_e97f.thumbnail-yellow-cc3c:hover .accordion_362e:nth-child(2) { animation-delay: 0.1s; }
.section_e97f.thumbnail-yellow-cc3c:hover .accordion_362e:nth-child(3) { animation-delay: 0.15s; }
.section_e97f.thumbnail-yellow-cc3c:hover .accordion_362e:nth-child(4) { animation-delay: 0.2s; }
.section_e97f.thumbnail-yellow-cc3c:hover .accordion_362e:nth-child(5) { animation-delay: 0.25s; }
.section_e97f.thumbnail-yellow-cc3c:hover .accordion_362e: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) {
    .article-6e81 {
        display: none !important;
    }
    
    .bottom_c9ab { display: inline-flex !important; }
}

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

    .bottom_c9ab { display: none !important; }
}

.hero-warm-78e4 {
    display: none;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-warm-78e4 a {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-warm-78e4 {
        display: flex;
    }
}

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

.footer-pink-8fd6: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);
}

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

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

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

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


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

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

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


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

    .dynamic_a5e0 a,
    .steel-a8e1 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .dirty-3286 {
        font-size: 0.6rem;
    }
    
    .border-fbdb {
        min-width: 190px;
    }
    
    .accordion_362e {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-warm-78e4 {
        gap: 0.625rem;
    }
    
    .hero-warm-78e4 .header_627d,
    .hero-warm-78e4 .fluid-a26a {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .stone-26a8 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .dynamic_a5e0 {
        gap: 0.625rem;
    }
    
    .dynamic_a5e0 a,
    .steel-a8e1 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .hero-warm-78e4 {
        gap: 0.875rem;
    }
    
    .hero-warm-78e4 .header_627d,
    .hero-warm-78e4 .fluid-a26a {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .border-fbdb {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .stone-26a8 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .dynamic_a5e0 {
        gap: 0.875rem;
    }
    
    .dynamic_a5e0 a,
    .steel-a8e1 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .hero-warm-78e4 {
        gap: 1rem;
    }
    
    .hero-warm-78e4 .header_627d,
    .hero-warm-78e4 .fluid-a26a {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .border-fbdb {
        min-width: 220px;
    }
    
    .accordion_362e {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.thumbnail-advanced-4947.feature-huge-4212 {
    visibility: visible;
    opacity: 1;
}

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

.surface-wide-91f8 {
    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;
}

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

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

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

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

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

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

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

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

.fixed-5bcc {
    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-5bcc .hover_6788 {
    min-width: 0;
}

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

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

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

.alert_9f65.fn-active-8bfe {
    visibility: visible;
    opacity: 1;
}

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

/* Content Container */
.article-solid-900f {
    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);
}

.alert_9f65.fn-active-8bfe .article-solid-900f {
    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) {
    .alert_9f65 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .narrow-6f36 {
        display: none;
    }

    .article-solid-900f {
        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;
    }

    .alert_9f65.fn-active-8bfe .article-solid-900f {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

    /* Desktop: simplify dropdown header area */
    .media-0c53 {
        display: none;
    }

    .pressed_329c {
        display: none;
    }

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

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

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

.media-0c53 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 */
.wide-0f44 {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

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

.alert_9f65.fn-active-8bfe .disabled_rough_0fc2:nth-child(1) {
    animation-delay: 0.05s;
}

.alert_9f65.fn-active-8bfe .disabled_rough_0fc2:nth-child(2) {
    animation-delay: 0.1s;
}

.alert_9f65.fn-active-8bfe .disabled_rough_0fc2:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

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

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

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

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

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

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

.primary_69e6:hover .focused_f27c,
.primary_69e6:active .focused_f27c {
    color: #00d4aa;
}

/* Quick Actions */
.pressed_329c {
    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_6788 {
    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_6788.fn-primary-8bfe {
    background: linear-gradient(135deg, #00d4aa 0%, #00b890 100%);
    color: #0a0e27;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

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

.hover_6788.fn-secondary-8bfe {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.hover_6788.fn-secondary-8bfe:hover,
.hover_6788.fn-secondary-8bfe:active {
    background: rgba(0, 212, 170, 0.1);
}

/* Scrollbar for Mobile Nav */
.article-solid-900f::-webkit-scrollbar {
    width: 6px;
}

.article-solid-900f::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

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

.article-solid-900f::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.7);
}

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

@media (min-width: 425px) {
    .article-solid-900f {
        padding: 1rem;
    }
    
    .media-0c53 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .wide-0f44 {
        gap: 1rem;
    }
    
    .primary_69e6 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .fast_4386 {
        font-size: 2rem;
    }
    
    .focused_f27c {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .article-solid-900f {
        padding: 1.25rem;
    }
    
    .media-0c53 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .media-0c53 h3 {
        font-size: 1.25rem;
    }
    
    .wide-0f44 {
        gap: 1.25rem;
    }
    
    .border_b8f8 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .primary_69e6 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .fast_4386 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .focused_f27c {
        font-size: 0.9375rem;
    }
    
    .hover_6788 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.header_627d,
.fluid-a26a,
.lower-30c2,
.hot_c9ba,
.secondary_cold_9162,
.search-8952,
.shade_narrow_6058 {
    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) {
    .header_627d,
    .fluid-a26a,
    .lower-30c2 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.header_627d,
.hot_c9ba,
.shade_narrow_6058 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.header_627d:hover,
.hot_c9ba:hover,
.shade_narrow_6058:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.fluid-a26a,
.secondary_cold_9162 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.fluid-a26a:hover,
.secondary_cold_9162:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.lower-30c2,
.search-8952 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.lower-30c2:hover,
.search-8952:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.hot_c9ba,
.secondary_cold_9162 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.shade_narrow_6058,
.search-8952 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.cold_5393 {
    z-index: 1;
}

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

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

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

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

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

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

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

.yellow_759f .breadcrumb-84d2 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.mini-f293 {
    position: relative;
}

.sort-silver-0cd6 {
    display: none;
}

.out-86c6 {
    display: block;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .sort-silver-0cd6 {
        display: block;
    }

    .out-86c6 {
        display: none;
        margin-bottom: 0;
    }
}

.grid-copper-c299 {
    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
   ============================================ */
.blue_5873 {
    margin-bottom: var(--spacing-xl);
}

.blue_5873.border_clean_0300 {
    text-align: center;
}

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

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

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

.aside-upper-6cd0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

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

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

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

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

.slider_out_0727 {
    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_out_0727 img {
    width: 100%;
    height: 100%;
    /* Show the full image without cropping */
    object-fit: contain !important;
    object-position: center;
    transition: transform var(--transition-slow);
}

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

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

.hard-7ef7.caption_79db {
    background: var(--secondary-color);
}

.hard-7ef7.cool_94aa {
    background: #ef4444;
}

.hard-7ef7.summary-silver-777c {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.thick_f2fd.fn-active-8bfe {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.paragraph-selected-b969 {
    min-height: 400px;
}

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

.element_3f4c.fn-active-8bfe {
    display: block;
}

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

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

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

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

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

.surface-steel-2fa0 {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

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

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

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

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

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

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

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

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

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

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

.east-62ca,
.silver_e312 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.panel-21ea {
    text-align: center;
}

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

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

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

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

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

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

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

.gallery-e439.fn-active-8bfe .image_33fb {
    transform: rotate(45deg);
}

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

.gallery-e439.fn-active-8bfe .basic-4053 {
    max-height: 1000px;
}

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

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

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

.outline-liquid-2326 {
    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);
}

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

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

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

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

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

.large-8cd1::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%;
}

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

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

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

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

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

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

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

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

.header-fixed-3a40 ul {
    list-style: none;
}

.header-fixed-3a40 ul li {
    margin-bottom: var(--spacing-xs);
}

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

.header-fixed-3a40 ul li a:hover {
    color: var(--primary-color);
}

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

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

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

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

.border_737b {
    text-align: center;
}

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

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .first-f375 {
        padding: var(--spacing-xl) 0;
    }
    
    .dirty_f81b {
        flex-direction: column;
    }
    
    .dirty_f81b > * {
        width: 100%;
    }
    
    .feature_rough_bb4f {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .thick_f2fd {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .widget-e54a {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .section_1d50 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .feature-down-254c,
    .alert_9f65,
    .large-8cd1,
    .soft-3257 {
        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 */
.block-8472 {
    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 */
.grid-copper-c299,
.message_prev_692e,
.table_static_f867,
.outline-liquid-2326 {
    will-change: transform;
}

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

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

.panel-pressed-9d46 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.advanced-1ff5 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-6e55 {
    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;
}

.list-6e55::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);
}

.list-6e55:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

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

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

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

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

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

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

.panel_fluid_7edd 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) {
    .pagination-1d60 {
        grid-template-columns: 1fr;
    }
    
    .easy_c62a {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .soft-7026 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .box-right-29c3 {
        grid-template-columns: 1fr;
    }
    
    .input-purple-7b50 {
        grid-template-columns: 1fr;
    }
    
    .middle-e2e7 {
        grid-template-columns: 1fr;
    }
    
    .message-ad7c,
    .dark-3c41,
    .pattern_91b5 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .soft-7026 {
        grid-template-columns: 1fr;
    }
    
    .current_d318 {
        font-size: 2rem;
    }
    
    .shadow_east_a6de {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.huge_39aa h4,
.slow-9f61 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.huge_39aa ul,
.slow-9f61 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

.module-lower-5417 {
    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;
}

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

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

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

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

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

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

.component_41fc {
    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) {
    .secondary-abb4 {
        grid-template-columns: 1fr;
    }
    
    .module-lower-5417 {
        position: static;
    }
}

@media (max-width: 768px) {
    .border_hard_41a0 {
        grid-template-columns: 1fr;
    }
    
    .module-lower-5417,
    .huge_39aa,
    .slow-9f61 {
        padding: var(--spacing-md);
    }
    
    .complex-8090 {
        font-size: 2rem;
    }
}

/* css-noise: cacd */
.shadow-element-u0 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
