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

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

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

.current_90d0.wrapper_ec05 {
    box-shadow: var(--shadow-lg);
}

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

.bottom_5790 {
    padding: 0;
}

.right-20eb {
    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 */
.right-20eb > * {
    min-width: 0;
}

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

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

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

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

@media (min-width: 768px) {
    .footer-7208 { font-size: 28px; }
    .focused-74a7 { font-size: 11px; }
}

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

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

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

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

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

    .carousel-inner-71bd { display: none !important; }
}

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

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

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

.pattern-8b7d {
    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);
}

.dirty_5cda:hover .pattern-8b7d {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .center_2ec9 {
        font-size: 28px;
    }
    
    .pattern-8b7d {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .center_2ec9 {
        font-size: 32px;
    }
    
    .pattern-8b7d {
        font-size: 12px;
    }
}

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

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

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

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

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

.feature_right_eda9 a:hover,
.detail_a973:hover,
.accordion_fe1c.summary-cold-3174:hover > .detail_a973 {
    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);
}

.feature_right_eda9 a:active,
.detail_a973:active {
    transform: translateY(0);
}

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

.accordion_fe1c.summary-cold-3174 {
    position: relative;
}

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

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

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

.accordion_fe1c.summary-cold-3174:hover .chip_2787 {
    transform: rotate(180deg);
    opacity: 1;
}

.accordion_fe1c.summary-cold-3174:focus-within .chip_2787,
.accordion_fe1c.summary-cold-3174.pattern_easy_6879 .chip_2787 {
    transform: rotate(180deg);
    opacity: 1;
}

.accordion_fe1c.summary-cold-3174:hover .overlay_focused_6cad {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

.frame-under-6cf8 {
    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 */
.frame-under-6cf8::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);
}

.accordion_fe1c.summary-cold-3174:hover .frame-under-6cf8 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accordion_fe1c.summary-cold-3174:focus-within .frame-under-6cf8,
.accordion_fe1c.summary-cold-3174.pattern_easy_6879 .frame-under-6cf8 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.breadcrumb-e3c2:last-child {
    border-bottom: none;
}

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

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

.breadcrumb-e3c2:hover::before {
    opacity: 1;
}

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

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

/* Keep dropdown open when hovering over it */
.accordion_fe1c.summary-cold-3174 .frame-under-6cf8:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.accordion_fe1c.summary-cold-3174:hover .breadcrumb-e3c2 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.accordion_fe1c.summary-cold-3174:hover .breadcrumb-e3c2:nth-child(1) { animation-delay: 0.05s; }
.accordion_fe1c.summary-cold-3174:hover .breadcrumb-e3c2:nth-child(2) { animation-delay: 0.1s; }
.accordion_fe1c.summary-cold-3174:hover .breadcrumb-e3c2:nth-child(3) { animation-delay: 0.15s; }
.accordion_fe1c.summary-cold-3174:hover .breadcrumb-e3c2:nth-child(4) { animation-delay: 0.2s; }
.accordion_fe1c.summary-cold-3174:hover .breadcrumb-e3c2:nth-child(5) { animation-delay: 0.25s; }
.accordion_fe1c.summary-cold-3174:hover .breadcrumb-e3c2: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) {
    .liquid_ec39 {
        display: none !important;
    }
    
    .carousel-inner-71bd { display: inline-flex !important; }
}

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

    .carousel-inner-71bd { display: none !important; }
}

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

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

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

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

.texture-orange-e3d9: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);
}

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

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

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

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


/* New Toggle Button */
.carousel-inner-71bd {
    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;
}

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

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


/* Medium desktop: compact spacing */
@media (min-width: 1401px) and (max-width: 1600px) {
    .right-20eb {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .feature_right_eda9 {
        gap: 0.375rem;
    }

    .feature_right_eda9 a,
    .detail_a973 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .chip_2787 {
        font-size: 0.6rem;
    }
    
    .frame-under-6cf8 {
        min-width: 190px;
    }
    
    .breadcrumb-e3c2 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .wood_6ac5 {
        gap: 0.625rem;
    }
    
    .wood_6ac5 .list_de59,
    .wood_6ac5 .link-6279 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .right-20eb {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .feature_right_eda9 {
        gap: 0.625rem;
    }
    
    .feature_right_eda9 a,
    .detail_a973 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .wood_6ac5 {
        gap: 0.875rem;
    }
    
    .wood_6ac5 .list_de59,
    .wood_6ac5 .link-6279 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .frame-under-6cf8 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .right-20eb {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .feature_right_eda9 {
        gap: 0.875rem;
    }
    
    .feature_right_eda9 a,
    .detail_a973 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .wood_6ac5 {
        gap: 1rem;
    }
    
    .wood_6ac5 .list_de59,
    .wood_6ac5 .link-6279 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .frame-under-6cf8 {
        min-width: 220px;
    }
    
    .breadcrumb-e3c2 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.easy_27b7.pattern_easy_6879 {
    visibility: visible;
    opacity: 1;
}

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

.gallery-in-abdc {
    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;
}

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

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

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

.hero-small-f492 {
    padding: 0.875rem;
    overflow-y: auto;
}

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

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

.text-b289 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;
}

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

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

.paragraph_east_0ed1 .section_narrow_f4e6 {
    min-width: 0;
}

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

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

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

.clean_37db.fn-active-758d {
    visibility: visible;
    opacity: 1;
}

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

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

.clean_37db.fn-active-758d .link_5676 {
    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) {
    .clean_37db {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .description_58c4 {
        display: none;
    }

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

    .clean_37db.fn-active-758d .link_5676 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

    .search-3843 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;
    }

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

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

    .accordion_stone_0bf1 {
        display: none;
    }

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

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

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

.tag_north_5df8 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 */
.input-top-9fad {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

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

.clean_37db.fn-active-758d .fresh_d783:nth-child(1) {
    animation-delay: 0.05s;
}

.clean_37db.fn-active-758d .fresh_d783:nth-child(2) {
    animation-delay: 0.1s;
}

.clean_37db.fn-active-758d .fresh_d783:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

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

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

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

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

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

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

.current_6f15:hover .hard-d854,
.current_6f15:active .hard-d854 {
    color: #00d4aa;
}

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

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

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

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

.section_narrow_f4e6.fn-secondary-758d {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.section_narrow_f4e6.fn-secondary-758d:hover,
.section_narrow_f4e6.fn-secondary-758d:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

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

@media (min-width: 425px) {
    .link_5676 {
        padding: 1rem;
    }
    
    .tag_north_5df8 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .input-top-9fad {
        gap: 1rem;
    }
    
    .current_6f15 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .avatar_4279 {
        font-size: 2rem;
    }
    
    .hard-d854 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .link_5676 {
        padding: 1.25rem;
    }
    
    .tag_north_5df8 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .tag_north_5df8 h3 {
        font-size: 1.25rem;
    }
    
    .input-top-9fad {
        gap: 1.25rem;
    }
    
    .popup_center_16d8 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .current_6f15 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .avatar_4279 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .hard-d854 {
        font-size: 0.9375rem;
    }
    
    .section_narrow_f4e6 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.list_de59,
.link-6279,
.header_91cf,
.old_40b8,
.logo_4bcb,
.center_5c31,
.wrapper_green_ea4a {
    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) {
    .list_de59,
    .link-6279,
    .header_91cf {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

.list_de59:hover,
.old_40b8:hover,
.wrapper_green_ea4a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.link-6279,
.logo_4bcb {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.link-6279:hover,
.logo_4bcb:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.header_91cf,
.center_5c31 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.header_91cf:hover,
.center_5c31:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.old_40b8,
.logo_4bcb {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

.aside-pressed-5760::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;
}

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

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

.orange_7981 {
    z-index: 1;
}

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

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

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

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

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

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

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

.focus_hard_5f7b .thumbnail-rough-f4d2 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.tag_0c3b {
    position: relative;
}

.tooltip_a011 {
    display: none;
}

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

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

    .focus-0571 {
        display: none;
        margin-bottom: 0;
    }
}

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

.wood_853f.advanced_0a09 {
    text-align: center;
}

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

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

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

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

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

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

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

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

.wood-01e5 {
    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));
}

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

.texture_6c6d:hover .wood-01e5 img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.orange_b077.footer_pressed_37b0 {
    background: var(--secondary-color);
}

.orange_b077.form_7917 {
    background: #ef4444;
}

.orange_b077.table-d360 {
    background: var(--accent-color);
}

.content-paper-39be {
    padding: var(--spacing-lg);
}

.content-paper-39be h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.content-paper-39be p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

.dirty-0e98 {
    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);
}

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

.dirty-0e98.fn-active-758d {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.down-cd26 {
    min-height: 400px;
}

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

.chip_dynamic_6686.fn-active-758d {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.smooth_6590 {
    text-align: center;
}

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

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

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

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

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

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

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

.outer_f0d8.fn-active-758d .complex-771e {
    transform: rotate(45deg);
}

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

.outer_f0d8.fn-active-758d .item-f8ab {
    max-height: 1000px;
}

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

/* ============================================
   Trust Section
   ============================================ */
.menu-bronze-3fa3 {
    padding: var(--spacing-2xl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-huge-df15 {
    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);
}

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

.lite_355a ul {
    list-style: none;
}

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

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

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

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

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

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

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

.caption-d240 {
    text-align: center;
}

.main-bright-3ce6 {
    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);
}

.main-bright-3ce6 span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .aside-pressed-5760 {
        padding: var(--spacing-xl) 0;
    }
    
    .caption_23a7 {
        flex-direction: column;
    }
    
    .caption_23a7 > * {
        width: 100%;
    }
    
    .last-19a9 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .dirty-0e98 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .pink-80d2 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .accent-huge-df15 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .current_90d0,
    .clean_37db,
    .sort-b037,
    .secondary_slow_d862 {
        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 */
.bright-07e3 {
    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 */
.row-eccb,
.texture_6c6d,
.frame_5562,
.dirty_4589 {
    will-change: transform;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.status-south-dd72::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);
}

.status-south-dd72:hover::before {
    transform: scaleX(1);
}

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

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

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

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

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

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

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

.fluid-bf4a > 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;
}

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

.badge_bright_76bc {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

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

.badge_bright_76bc 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) {
    .fixed_5da6 {
        grid-template-columns: 1fr;
    }
    
    .text_full_256d {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .secondary-5acd {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hovered_a67e {
        grid-template-columns: 1fr;
    }
    
    .logo_dim_7c3b {
        grid-template-columns: 1fr;
    }
    
    .active_7180 {
        grid-template-columns: 1fr;
    }
    
    .south-e542,
    .secondary_df8a,
    .fluid-bf4a {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .secondary-5acd {
        grid-template-columns: 1fr;
    }
    
    .block-faed {
        font-size: 2rem;
    }
    
    .gallery_ee97 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.right_87e0 ul,
.accent-bf72 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

.detail-gold-7a6c {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.new-935e {
    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);
}

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

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

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

/* Responsive for Responsible Gaming Section */
@media (max-width: 1024px) {
    .disabled-middle-f5b8 {
        grid-template-columns: 1fr;
    }
    
    .mask_c2d5 {
        position: static;
    }
}

@media (max-width: 768px) {
    .banner-ce85 {
        grid-template-columns: 1fr;
    }
    
    .mask_c2d5,
    .right_87e0,
    .accent-bf72 {
        padding: var(--spacing-md);
    }
    
    .item-d4b5 {
        font-size: 2rem;
    }
}

/* css-noise: 0c1c */
.phantom-card-i1 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
