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

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

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

.narrow-4d36.heading-d59e {
    box-shadow: var(--shadow-lg);
}

/* If any old JS still toggles these classes, keep header visible */
.narrow-4d36.mask-next-cc47 {
    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; }
}

.gallery_a975 {
    padding: 0;
}

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

.box-3a00 {
    grid-template-columns: auto 1fr auto;
}

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

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

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

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

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

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

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

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

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

    .chip-c4f9 { display: none !important; }
}

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

.soft-da80:hover .status-south-4bea {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

.status-south-4bea {
    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;
}

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

.soft-da80:hover .slow-d404 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .status-south-4bea {
        font-size: 28px;
    }
    
    .slow-d404 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .status-south-4bea {
        font-size: 32px;
    }
    
    .slow-d404 {
        font-size: 12px;
    }
}

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

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

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

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

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

.advanced_3814 a:hover,
.breadcrumb_b975:hover,
.east-41d5.highlight_narrow_f23c:hover > .breadcrumb_b975 {
    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);
}

.advanced_3814 a:active,
.breadcrumb_b975:active {
    transform: translateY(0);
}

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

.east-41d5.highlight_narrow_f23c {
    position: relative;
}

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

.text-light-a6d6 {
    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);
}

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

.east-41d5.highlight_narrow_f23c:hover .grid_current_7373 {
    transform: rotate(180deg);
    opacity: 1;
}

.east-41d5.highlight_narrow_f23c:focus-within .grid_current_7373,
.east-41d5.highlight_narrow_f23c.media_c86a .grid_current_7373 {
    transform: rotate(180deg);
    opacity: 1;
}

.east-41d5.highlight_narrow_f23c:hover .text-light-a6d6 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.east-41d5.highlight_narrow_f23c:hover .detail_iron_e783 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.east-41d5.highlight_narrow_f23c:focus-within .detail_iron_e783,
.east-41d5.highlight_narrow_f23c.media_c86a .detail_iron_e783 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.carousel-light-63c6 {
    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;
}

.carousel-light-63c6:last-child {
    border-bottom: none;
}

.carousel-light-63c6: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;
}

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

.carousel-light-63c6:hover::before {
    opacity: 1;
}

.carousel-light-63c6:first-child {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.carousel-light-63c6:last-child {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Keep dropdown open when hovering over it */
.east-41d5.highlight_narrow_f23c .detail_iron_e783:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.east-41d5.highlight_narrow_f23c:hover .carousel-light-63c6 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.east-41d5.highlight_narrow_f23c:hover .carousel-light-63c6:nth-child(1) { animation-delay: 0.05s; }
.east-41d5.highlight_narrow_f23c:hover .carousel-light-63c6:nth-child(2) { animation-delay: 0.1s; }
.east-41d5.highlight_narrow_f23c:hover .carousel-light-63c6:nth-child(3) { animation-delay: 0.15s; }
.east-41d5.highlight_narrow_f23c:hover .carousel-light-63c6:nth-child(4) { animation-delay: 0.2s; }
.east-41d5.highlight_narrow_f23c:hover .carousel-light-63c6:nth-child(5) { animation-delay: 0.25s; }
.east-41d5.highlight_narrow_f23c:hover .carousel-light-63c6: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) {
    .content-86a7 {
        display: none !important;
    }
    
    .chip-c4f9 { display: inline-flex !important; }
}

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

    .chip-c4f9 { display: none !important; }
}

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

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

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

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

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

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

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

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

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


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

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

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


/* Medium desktop: compact spacing */
@media (min-width: 1401px) and (max-width: 1600px) {
    .under-4fde {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .advanced_3814 {
        gap: 0.375rem;
    }

    .advanced_3814 a,
    .breadcrumb_b975 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .grid_current_7373 {
        font-size: 0.6rem;
    }
    
    .detail_iron_e783 {
        min-width: 190px;
    }
    
    .carousel-light-63c6 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .fluid-a02f {
        gap: 0.625rem;
    }
    
    .fluid-a02f .center-d88a,
    .fluid-a02f .active-lower-a938 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .under-4fde {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .advanced_3814 {
        gap: 0.625rem;
    }
    
    .advanced_3814 a,
    .breadcrumb_b975 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .fluid-a02f {
        gap: 0.875rem;
    }
    
    .fluid-a02f .center-d88a,
    .fluid-a02f .active-lower-a938 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .detail_iron_e783 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .under-4fde {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .advanced_3814 {
        gap: 0.875rem;
    }
    
    .advanced_3814 a,
    .breadcrumb_b975 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .fluid-a02f {
        gap: 1rem;
    }
    
    .fluid-a02f .center-d88a,
    .fluid-a02f .active-lower-a938 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .detail_iron_e783 {
        min-width: 220px;
    }
    
    .carousel-light-63c6 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.block_52bf.media_c86a {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

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

.thumbnail-action-8a78 {
    padding: 0.875rem;
    overflow-y: auto;
}

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

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

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

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

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

.first_13c3 .container-gold-2025 {
    min-width: 0;
}

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

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

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

.info_ffcb.fn-active-8d8d {
    visibility: visible;
    opacity: 1;
}

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

/* Content Container */
.light-837a {
    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);
}

.info_ffcb.fn-active-8d8d .light-837a {
    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) {
    .info_ffcb {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .footer-old-e4bb {
        display: none;
    }

    .light-837a {
        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;
    }

    .info_ffcb.fn-active-8d8d .light-837a {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

    .modal_current_b377 {
        display: none;
    }

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

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

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

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

.current-01aa {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.info_ffcb.fn-active-8d8d .current-01aa:nth-child(1) {
    animation-delay: 0.05s;
}

.info_ffcb.fn-active-8d8d .current-01aa:nth-child(2) {
    animation-delay: 0.1s;
}

.info_ffcb.fn-active-8d8d .current-01aa:nth-child(3) {
    animation-delay: 0.15s;
}

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

.active-rough-1b7c {
    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 */
.banner-easy-dd33 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.solid-59d8 {
    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;
}

.solid-59d8::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;
}

.solid-59d8:hover::before,
.solid-59d8:active::before {
    opacity: 1;
}

.solid-59d8:hover,
.solid-59d8: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);
}

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

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

.solid-59d8:hover .inner_2502,
.solid-59d8:active .inner_2502 {
    color: #00d4aa;
}

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

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

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

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

.container-gold-2025.fn-secondary-8d8d {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.container-gold-2025.fn-secondary-8d8d:hover,
.container-gold-2025.fn-secondary-8d8d:active {
    background: rgba(0, 212, 170, 0.1);
}

/* Scrollbar for Mobile Nav */
.light-837a::-webkit-scrollbar {
    width: 6px;
}

.light-837a::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.light-837a::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.5);
    border-radius: 3px;
}

.light-837a::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.7);
}

/* Responsive Adjustments */
@media (min-width: 375px) {
    .solid-59d8 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .search_motion_6a87 {
        font-size: 1.875rem;
    }
    
    .inner_2502 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .light-837a {
        padding: 1rem;
    }
    
    .pattern_402f {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .header_56c9 {
        gap: 1rem;
    }
    
    .solid-59d8 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .search_motion_6a87 {
        font-size: 2rem;
    }
    
    .inner_2502 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .light-837a {
        padding: 1.25rem;
    }
    
    .pattern_402f {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .pattern_402f h3 {
        font-size: 1.25rem;
    }
    
    .header_56c9 {
        gap: 1.25rem;
    }
    
    .active-rough-1b7c {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .solid-59d8 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .search_motion_6a87 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .inner_2502 {
        font-size: 0.9375rem;
    }
    
    .container-gold-2025 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.center-d88a,
.active-lower-a938,
.focus-smooth-87fe,
.simple-91b1,
.column_ea43,
.feature_1794,
.accent_e14a {
    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) {
    .center-d88a,
    .active-lower-a938,
    .focus-smooth-87fe {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.center-d88a,
.simple-91b1,
.accent_e14a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.center-d88a:hover,
.simple-91b1:hover,
.accent_e14a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.active-lower-a938,
.column_ea43 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.active-lower-a938:hover,
.column_ea43:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.focus-smooth-87fe,
.feature_1794 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.focus-smooth-87fe:hover,
.feature_1794:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.simple-91b1,
.column_ea43 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

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

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

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

.block-inner-c4f0 {
    z-index: 1;
}

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

.popup-587c {
    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);
}

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

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

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

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

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

.sort-clean-b948 .video_af82 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.content_9b3e {
    position: relative;
}

.nav-06f6 {
    display: none;
}

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

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

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

.alert-short-2c1c {
    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
   ============================================ */
.mini-560f {
    margin-bottom: var(--spacing-xl);
}

.mini-560f.mini_26d1 {
    text-align: center;
}

.mini-560f h2 {
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

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

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

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

.complex-1e42 {
    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;
}

.complex-1e42.small-41a5 {
    background: var(--secondary-color);
}

.complex-1e42.panel_in_1a84 {
    background: #ef4444;
}

.complex-1e42.primary_8084 {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery_8385 {
    min-height: 400px;
}

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

.tooltip_d230.fn-active-8d8d {
    display: block;
}

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

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

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

.link-selected-5bf9 h3 {
    margin-bottom: var(--spacing-md);
}

.link-selected-5bf9 p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

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

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

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

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

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

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

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

.border-88f0 a {
    display: block;
    color: inherit;
}

.border-88f0 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;
}

.tooltip-north-0fea {
    padding: var(--spacing-md);
}

.tooltip-north-0fea h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.mini-4cc1,
.chip-ad93 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.warm_b96e {
    text-align: center;
}

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

.footer-out-700d {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.image-ee1f.fn-active-8d8d .shade-small-61b2 {
    transform: rotate(45deg);
}

.form-full-110e {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.image-ee1f.fn-active-8d8d .form-full-110e {
    max-height: 1000px;
}

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

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

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

.table-next-1ab6 {
    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);
}

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

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

.table-next-1ab6 h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.table-next-1ab6 p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Final CTA
   ============================================ */
.mask-purple-0dc4 {
    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;
}

.mask-purple-0dc4::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%;
}

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

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

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

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

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

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

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

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

.highlight-tall-be86 ul {
    list-style: none;
}

.highlight-tall-be86 ul li {
    margin-bottom: var(--spacing-xs);
}

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

.highlight-tall-be86 ul li a:hover {
    color: var(--primary-color);
}

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

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

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

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

.tertiary_a124 {
    text-align: center;
}

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

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .outline_a9d8 {
        padding: var(--spacing-xl) 0;
    }
    
    .image_easy_460f {
        flex-direction: column;
    }
    
    .image_easy_460f > * {
        width: 100%;
    }
    
    .alert_down_241d {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .summary-ca92 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .accent_out_4c3f {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .backdrop_d84a {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .narrow-4d36,
    .info_ffcb,
    .mask-purple-0dc4,
    .next-151f {
        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 */
.silver_37fc {
    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 */
.alert-short-2c1c,
.description-3858,
.border-88f0,
.table-next-1ab6 {
    will-change: transform;
}

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

.layout-old-bc06 {
    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);
}

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

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

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

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

.menu-39e5 {
    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);
}

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

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

.backdrop-simple-01f5 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.backdrop-simple-01f5 strong {
    font-size: 1.125rem;
    color: var(--text-primary);
}

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

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

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

.layout-south-306c {
    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
   ============================================ */
.accordion-current-b359 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

.container-small-9e7e {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

.description-stone-3909 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow-5c9d > 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;
}

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

.label-3b98 {
    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);
}

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

.label-3b98 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) {
    .link-simple-e63e {
        grid-template-columns: 1fr;
    }
    
    .layout-old-bc06 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .text-stale-a6ac {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .element_3ca7 {
        grid-template-columns: 1fr;
    }
    
    .gallery_over_e7ce {
        grid-template-columns: 1fr;
    }
    
    .list-dfd4 {
        grid-template-columns: 1fr;
    }
    
    .tabs-dfe7,
    .photo_solid_f2f5,
    .slow-5c9d {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .text-stale-a6ac {
        grid-template-columns: 1fr;
    }
    
    .shadow_silver_e7ce {
        font-size: 2rem;
    }
    
    .pagination_thick_7985 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.module_e057 h4,
.aside-new-ec4f h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.module_e057 ul,
.aside-new-ec4f ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

.mini-5ba3 {
    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;
}

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

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

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

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

.grid-iron-3a3c {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.wrapper_pressed_da96 {
    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) {
    .purple-3bba {
        grid-template-columns: 1fr;
    }
    
    .mini-5ba3 {
        position: static;
    }
}

@media (max-width: 768px) {
    .sort-yellow-bebe {
        grid-template-columns: 1fr;
    }
    
    .mini-5ba3,
    .module_e057,
    .aside-new-ec4f {
        padding: var(--spacing-md);
    }
    
    .accent_1b15 {
        font-size: 2rem;
    }
}

/* css-noise: 0ebe */
.widget-item-v6 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
