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

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

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

.fresh-ac5c.selected_5ec4 {
    box-shadow: var(--shadow-lg);
}

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

.north-9245 {
    padding: 0;
}

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

.active-39ff {
    grid-template-columns: auto 1fr auto;
}

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

.orange-1da0 {
    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);
}

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

@media (min-width: 768px) {
    .orange-1da0 { font-size: 28px; }
    .down-aa17 { font-size: 11px; }
}

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

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

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

    .block-middle-60de {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

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

    .box-gas-73f6 { display: none !important; }
}

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

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

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

.wide-1f0c {
    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);
}

.banner_6068:hover .wide-1f0c {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .wrapper_f122 {
        font-size: 28px;
    }
    
    .wide-1f0c {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .wrapper_f122 {
        font-size: 32px;
    }
    
    .wide-1f0c {
        font-size: 12px;
    }
}

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

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

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

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

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

.nav_f042 a:hover,
.photo_warm_d2d3:hover,
.soft_f60e.feature_purple_3327:hover > .photo_warm_d2d3 {
    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);
}

.nav_f042 a:active,
.photo_warm_d2d3:active {
    transform: translateY(0);
}

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

.soft_f60e.feature_purple_3327 {
    position: relative;
}

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

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

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

.soft_f60e.feature_purple_3327:hover .tag-d154 {
    transform: rotate(180deg);
    opacity: 1;
}

.soft_f60e.feature_purple_3327:focus-within .tag-d154,
.soft_f60e.feature_purple_3327.outline_45b6 .tag-d154 {
    transform: rotate(180deg);
    opacity: 1;
}

.soft_f60e.feature_purple_3327:hover .logo_rough_e908 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.soft_f60e.feature_purple_3327:hover .widget_dim_8365 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.soft_f60e.feature_purple_3327:focus-within .widget_dim_8365,
.soft_f60e.feature_purple_3327.outline_45b6 .widget_dim_8365 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.soft_f60e.feature_purple_3327 .widget_dim_8365:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.soft_f60e.feature_purple_3327:hover .outline_cbb7 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.soft_f60e.feature_purple_3327:hover .outline_cbb7:nth-child(1) { animation-delay: 0.05s; }
.soft_f60e.feature_purple_3327:hover .outline_cbb7:nth-child(2) { animation-delay: 0.1s; }
.soft_f60e.feature_purple_3327:hover .outline_cbb7:nth-child(3) { animation-delay: 0.15s; }
.soft_f60e.feature_purple_3327:hover .outline_cbb7:nth-child(4) { animation-delay: 0.2s; }
.soft_f60e.feature_purple_3327:hover .outline_cbb7:nth-child(5) { animation-delay: 0.25s; }
.soft_f60e.feature_purple_3327:hover .outline_cbb7: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) {
    .block-middle-60de {
        display: none !important;
    }
    
    .box-gas-73f6 { display: inline-flex !important; }
}

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

    .box-gas-73f6 { display: none !important; }
}

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

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

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

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

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

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

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

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

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


/* New Toggle Button */
.box-gas-73f6 {
    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;
}

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

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


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

    .nav_f042 a,
    .photo_warm_d2d3 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .tag-d154 {
        font-size: 0.6rem;
    }
    
    .widget_dim_8365 {
        min-width: 190px;
    }
    
    .outline_cbb7 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .new_6862 {
        gap: 0.625rem;
    }
    
    .new_6862 .tag-9467,
    .new_6862 .first-54b7 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .icon_current_8b0c {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .nav_f042 {
        gap: 0.625rem;
    }
    
    .nav_f042 a,
    .photo_warm_d2d3 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .new_6862 {
        gap: 0.875rem;
    }
    
    .new_6862 .tag-9467,
    .new_6862 .first-54b7 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .widget_dim_8365 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .icon_current_8b0c {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .nav_f042 {
        gap: 0.875rem;
    }
    
    .nav_f042 a,
    .photo_warm_d2d3 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .new_6862 {
        gap: 1rem;
    }
    
    .new_6862 .tag-9467,
    .new_6862 .first-54b7 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .widget_dim_8365 {
        min-width: 220px;
    }
    
    .outline_cbb7 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.accent-9166.outline_45b6 {
    visibility: visible;
    opacity: 1;
}

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

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

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

.fluid-8a81 {
    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);
}

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

.heading-current-74b1 {
    padding: 0.875rem;
    overflow-y: auto;
}

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

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

.white-a4ae 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;
}

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

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

.banner_action_f21a .text_gas_14cb {
    min-width: 0;
}

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

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

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

.outline_green_57a3.fn-active-dfec {
    visibility: visible;
    opacity: 1;
}

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

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

.outline_green_57a3.fn-active-dfec .image_dynamic_43f6 {
    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) {
    .outline_green_57a3 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .chip-a7b3 {
        display: none;
    }

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

    .outline_green_57a3.fn-active-dfec .image_dynamic_43f6 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

    .photo-tiny-ff2d {
        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;
    }

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

    .photo-tiny-ff2d 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;
    }

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

    /* Desktop: simplify dropdown header area */
    .video-black-0096 {
        display: none;
    }

    .header_a5c9 {
        display: none;
    }

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

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

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

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

.narrow-ad06 {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
}

.outline_green_57a3.fn-active-dfec .narrow-ad06:nth-child(1) {
    animation-delay: 0.05s;
}

.outline_green_57a3.fn-active-dfec .narrow-ad06:nth-child(2) {
    animation-delay: 0.1s;
}

.outline_green_57a3.fn-active-dfec .narrow-ad06:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

.avatar-action-8809 {
    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;
}

.avatar-action-8809::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;
}

.avatar-action-8809:hover::before,
.avatar-action-8809:active::before {
    opacity: 1;
}

.avatar-action-8809:hover,
.avatar-action-8809: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);
}

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

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

.avatar-action-8809:hover .outer-8108,
.avatar-action-8809:active .outer-8108 {
    color: #00d4aa;
}

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

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

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

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

.text_gas_14cb.fn-secondary-dfec {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.text_gas_14cb.fn-secondary-dfec:hover,
.text_gas_14cb.fn-secondary-dfec:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .avatar-action-8809 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .fluid_a4d6 {
        font-size: 1.875rem;
    }
    
    .outer-8108 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .image_dynamic_43f6 {
        padding: 1rem;
    }
    
    .video-black-0096 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .accordion_pressed_1e1a {
        gap: 1rem;
    }
    
    .avatar-action-8809 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .fluid_a4d6 {
        font-size: 2rem;
    }
    
    .outer-8108 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .image_dynamic_43f6 {
        padding: 1.25rem;
    }
    
    .video-black-0096 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .video-black-0096 h3 {
        font-size: 1.25rem;
    }
    
    .accordion_pressed_1e1a {
        gap: 1.25rem;
    }
    
    .highlight-bronze-c7dd {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .avatar-action-8809 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .fluid_a4d6 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .outer-8108 {
        font-size: 0.9375rem;
    }
    
    .text_gas_14cb {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.tag-9467,
.first-54b7,
.focus-32ef,
.old-6d74,
.icon-smooth-fb34,
.bronze-34e7,
.tertiary_14d3 {
    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) {
    .tag-9467,
    .first-54b7,
    .focus-32ef {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.tag-9467,
.old-6d74,
.tertiary_14d3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.tag-9467:hover,
.old-6d74:hover,
.tertiary_14d3:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.first-54b7,
.icon-smooth-fb34 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.first-54b7:hover,
.icon-smooth-fb34:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.focus-32ef,
.bronze-34e7 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.focus-32ef:hover,
.bronze-34e7:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.old-6d74,
.icon-smooth-fb34 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.tertiary_14d3,
.bronze-34e7 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

@media (min-width: 768px) {
    .gallery-motion-0a76 {
        grid-template-columns: 1fr 1fr;
    }
}

.accordion_c204 {
    z-index: 1;
}

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

.gradient-554f {
    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);
}

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

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

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

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

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

.row-yellow-a6f7 .stone-edf9 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.cold_e18b {
    position: relative;
}

.green_7309 {
    display: none;
}

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

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

    .message-5044 {
        display: none;
        margin-bottom: 0;
    }
}

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

.label_d9be.shadow-plasma-314c {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.modal-1587:hover .short-ff43 img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.input-8398.dirty-b411 {
    background: var(--secondary-color);
}

.input-8398.grid-cold-2f88 {
    background: #ef4444;
}

.input-8398.upper_1c6c {
    background: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

.fluid-87cc {
    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);
}

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

.fluid-87cc.fn-active-dfec {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.focus-f087 {
    min-height: 400px;
}

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

.popup_d0b7.fn-active-dfec {
    display: block;
}

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

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

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

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

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

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

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

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

/* ============================================
   Featured Games
   ============================================ */
.message-huge-10b6 {
    padding: var(--spacing-2xl) 0;
}

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

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

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

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

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

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

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

.description-wide-9a61,
.tooltip-gold-2965 {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.modal_6455 {
    text-align: center;
}

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

.hidden-fixed-613b {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.motion-9174.fn-active-dfec .copper_12eb {
    transform: rotate(45deg);
}

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

.motion-9174.fn-active-dfec .thumbnail-c03a {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

.alert-last-bb12::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%;
}

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

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

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

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

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

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

.main-106a {
    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);
}

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

.overlay-thick-4003 ul {
    list-style: none;
}

.overlay-thick-4003 ul li {
    margin-bottom: var(--spacing-xs);
}

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

.overlay-thick-4003 ul li a:hover {
    color: var(--primary-color);
}

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

.full-4cac {
    display: flex;
    gap: var(--spacing-sm);
}

.full-4cac 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);
}

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

.tabs_9898 {
    text-align: center;
}

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

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

.nav-769b {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.nav-769b 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);
}

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

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

/* ============================================
   Utility Classes
   ============================================ */
.shadow-plasma-314c {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .silver_63d2 {
        padding: var(--spacing-xl) 0;
    }
    
    .popup-5f8a {
        flex-direction: column;
    }
    
    .popup-5f8a > * {
        width: 100%;
    }
    
    .outline-f67b {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .fluid-87cc {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .badge_a289 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .main-106a {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .fresh-ac5c,
    .outline_green_57a3,
    .alert-last-bb12,
    .layout-focused-0e31 {
        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 */
.new_a345 {
    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 */
.breadcrumb_next_0e4a,
.modal-1587,
.popup_fresh_174b,
.cool_3625 {
    will-change: transform;
}

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

.component-fixed-73fd {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-cb20 {
    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
   ============================================ */
.plasma-651c {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-active-919b {
    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);
}

.frame-active-919b:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

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

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

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

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

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

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

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

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

.wrapper-out-27f9 {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

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

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

.slider_d36a 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) {
    .action-7eaf {
        grid-template-columns: 1fr;
    }
    
    .component-fixed-73fd {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .header-d90f {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .heading-c92c {
        grid-template-columns: 1fr;
    }
    
    .card-4f60 {
        grid-template-columns: 1fr;
    }
    
    .simple_2627 {
        grid-template-columns: 1fr;
    }
    
    .button-fe55,
    .border_center_a59a,
    .mini_5f5b {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .header-d90f {
        grid-template-columns: 1fr;
    }
    
    .background-upper-387d {
        font-size: 2rem;
    }
    
    .wrapper-out-27f9 {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.narrow-efe4,
.primary-hard-16d8 {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.narrow-efe4 h4,
.primary-hard-16d8 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.narrow-efe4 ul,
.primary-hard-16d8 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.narrow-efe4 ul li,
.primary-hard-16d8 ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.active_outer_50b8 {
    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) {
    .popup_4273 {
        grid-template-columns: 1fr;
    }
    
    .status_dynamic_8a7b {
        position: static;
    }
}

@media (max-width: 768px) {
    .notice_38e2 {
        grid-template-columns: 1fr;
    }
    
    .status_dynamic_8a7b,
    .narrow-efe4,
    .primary-hard-16d8 {
        padding: var(--spacing-md);
    }
    
    .container_5862 {
        font-size: 2rem;
    }
}

/* css-noise: cd05 */
.phantom-card-a9 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
