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

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

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

.purple-35f1.feature_purple_8b56 {
    box-shadow: var(--shadow-lg);
}

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

.rough-8f29 {
    padding: 0;
}

.gallery-down-39ec {
    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 */
.gallery-down-39ec > * {
    min-width: 0;
}

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

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

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

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

@media (min-width: 768px) {
    .gas_2850 { font-size: 28px; }
    .dropdown-iron-d411 { font-size: 11px; }
}

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

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

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

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

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

    .gallery-wood-ee64 { display: none !important; }
}

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

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

.highlight-middle-4180 {
    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;
}

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

.box_b2f6:hover .summary_lower_9dd7 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .highlight-middle-4180 {
        font-size: 28px;
    }
    
    .summary_lower_9dd7 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .highlight-middle-4180 {
        font-size: 32px;
    }
    
    .summary_lower_9dd7 {
        font-size: 12px;
    }
}

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

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

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

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

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

.card_copper_571c a:hover,
.module_ffab:hover,
.message-under-3d00.disabled_4d09:hover > .module_ffab {
    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);
}

.card_copper_571c a:active,
.module_ffab:active {
    transform: translateY(0);
}

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

.message-under-3d00.disabled_4d09 {
    position: relative;
}

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

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

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

.message-under-3d00.disabled_4d09:hover .brown_2080 {
    transform: rotate(180deg);
    opacity: 1;
}

.message-under-3d00.disabled_4d09:focus-within .brown_2080,
.message-under-3d00.disabled_4d09.feature-08d0 .brown_2080 {
    transform: rotate(180deg);
    opacity: 1;
}

.message-under-3d00.disabled_4d09:hover .sort_narrow_76ea {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.message-under-3d00.disabled_4d09:hover .red_a08d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.message-under-3d00.disabled_4d09:focus-within .red_a08d,
.message-under-3d00.disabled_4d09.feature-08d0 .red_a08d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.row-selected-1470 {
    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;
}

.row-selected-1470:last-child {
    border-bottom: none;
}

.row-selected-1470: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;
}

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

.row-selected-1470:hover::before {
    opacity: 1;
}

.row-selected-1470:first-child {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.row-selected-1470:last-child {
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Keep dropdown open when hovering over it */
.message-under-3d00.disabled_4d09 .red_a08d:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.message-under-3d00.disabled_4d09:hover .row-selected-1470 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.message-under-3d00.disabled_4d09:hover .row-selected-1470:nth-child(1) { animation-delay: 0.05s; }
.message-under-3d00.disabled_4d09:hover .row-selected-1470:nth-child(2) { animation-delay: 0.1s; }
.message-under-3d00.disabled_4d09:hover .row-selected-1470:nth-child(3) { animation-delay: 0.15s; }
.message-under-3d00.disabled_4d09:hover .row-selected-1470:nth-child(4) { animation-delay: 0.2s; }
.message-under-3d00.disabled_4d09:hover .row-selected-1470:nth-child(5) { animation-delay: 0.25s; }
.message-under-3d00.disabled_4d09:hover .row-selected-1470: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_212f {
        display: none !important;
    }
    
    .gallery-wood-ee64 { display: inline-flex !important; }
}

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

    .gallery-wood-ee64 { display: none !important; }
}

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

.aside-2f92 a {
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

.soft-180a: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);
}

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

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

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

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


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

.gallery-orange-97bb {
    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) {
    .gallery-wood-ee64[aria-expanded="true"] .gallery-orange-97bb:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .gallery-wood-ee64[aria-expanded="true"] .gallery-orange-97bb:nth-child(2) {
        opacity: 0;
    }
    .gallery-wood-ee64[aria-expanded="true"] .gallery-orange-97bb:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

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


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

    .card_copper_571c a,
    .module_ffab {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .brown_2080 {
        font-size: 0.6rem;
    }
    
    .red_a08d {
        min-width: 190px;
    }
    
    .row-selected-1470 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .aside-2f92 {
        gap: 0.625rem;
    }
    
    .aside-2f92 .tabs_6760,
    .aside-2f92 .box-hard-7d4c {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .gallery-down-39ec {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .card_copper_571c {
        gap: 0.625rem;
    }
    
    .card_copper_571c a,
    .module_ffab {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .aside-2f92 {
        gap: 0.875rem;
    }
    
    .aside-2f92 .tabs_6760,
    .aside-2f92 .box-hard-7d4c {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .red_a08d {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .gallery-down-39ec {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .card_copper_571c {
        gap: 0.875rem;
    }
    
    .card_copper_571c a,
    .module_ffab {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .aside-2f92 {
        gap: 1rem;
    }
    
    .aside-2f92 .tabs_6760,
    .aside-2f92 .box-hard-7d4c {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .red_a08d {
        min-width: 220px;
    }
    
    .row-selected-1470 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.hard_8838.feature-08d0 {
    visibility: visible;
    opacity: 1;
}

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

.popup-slow-b215 {
    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;
}

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

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

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

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

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

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

.hard-39e3 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;
}

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

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

.layout_warm_4cde .detail_black_a0a1 {
    min-width: 0;
}

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

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

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

.paragraph-5b8f.fn-active-b9a3 {
    visibility: visible;
    opacity: 1;
}

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

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

.paragraph-5b8f.fn-active-b9a3 .caption-d3ab {
    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) {
    .paragraph-5b8f {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .container_small_c9fa {
        display: none;
    }

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

    .paragraph-5b8f.fn-active-b9a3 .caption-d3ab {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

    /* Desktop: simplify dropdown header area */
    .status-d3d7 {
        display: none;
    }

    .pagination_c7df {
        display: none;
    }

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

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

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

.status-d3d7 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 */
.texture-dynamic-202f {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

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

.paragraph-5b8f.fn-active-b9a3 .table_old_8c94:nth-child(1) {
    animation-delay: 0.05s;
}

.paragraph-5b8f.fn-active-b9a3 .table_old_8c94:nth-child(2) {
    animation-delay: 0.1s;
}

.paragraph-5b8f.fn-active-b9a3 .table_old_8c94:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

.banner-out-3b2b {
    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;
}

.banner-out-3b2b::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;
}

.banner-out-3b2b:hover::before,
.banner-out-3b2b:active::before {
    opacity: 1;
}

.banner-out-3b2b:hover,
.banner-out-3b2b: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);
}

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

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

.banner-out-3b2b:hover .gradient-cold-a1e6,
.banner-out-3b2b:active .gradient-cold-a1e6 {
    color: #00d4aa;
}

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

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

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

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

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

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

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .banner-out-3b2b {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .banner-76b4 {
        font-size: 1.875rem;
    }
    
    .gradient-cold-a1e6 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .caption-d3ab {
        padding: 1rem;
    }
    
    .status-d3d7 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .texture-dynamic-202f {
        gap: 1rem;
    }
    
    .banner-out-3b2b {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .banner-76b4 {
        font-size: 2rem;
    }
    
    .gradient-cold-a1e6 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .caption-d3ab {
        padding: 1.25rem;
    }
    
    .status-d3d7 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .status-d3d7 h3 {
        font-size: 1.25rem;
    }
    
    .texture-dynamic-202f {
        gap: 1.25rem;
    }
    
    .brown-2d02 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .banner-out-3b2b {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .banner-76b4 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .gradient-cold-a1e6 {
        font-size: 0.9375rem;
    }
    
    .detail_black_a0a1 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.tabs_6760,
.box-hard-7d4c,
.cold-813f,
.link_wood_eb25,
.south-cc28,
.simple-9bfb,
.preview_79a9 {
    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) {
    .tabs_6760,
    .box-hard-7d4c,
    .cold-813f {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

.tabs_6760:hover,
.link_wood_eb25:hover,
.preview_79a9:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.box-hard-7d4c,
.south-cc28 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.box-hard-7d4c:hover,
.south-cc28:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.cold-813f,
.simple-9bfb {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cold-813f:hover,
.simple-9bfb:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.link_wood_eb25,
.south-cc28 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.preview_79a9,
.simple-9bfb {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

.current-1d62 {
    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
   ============================================ */
.accent-first-969e {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.accent-first-969e::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;
}

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

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

.module-d7c6 {
    z-index: 1;
}

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

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

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

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

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

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

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

.last_2fb7 .grid-tall-9b69 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.filter_b019 {
    position: relative;
}

.notice-hard-62b1 {
    display: none;
}

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

@media (min-width: 768px) {
    .notice-hard-62b1 {
        display: block;
    }

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

.blue_396f {
    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
   ============================================ */
.south-9ef4 {
    margin-bottom: var(--spacing-xl);
}

.south-9ef4.search-91f3 {
    text-align: center;
}

.south-9ef4 h2 {
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.plasma_5d20.card-c779 {
    background: var(--secondary-color);
}

.plasma_5d20.mask-90fb {
    background: #ef4444;
}

.plasma_5d20.shade_2b7f {
    background: var(--accent-color);
}

.form-warm-f139 {
    padding: var(--spacing-lg);
}

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

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

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

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

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

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

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

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

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

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

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

.blue-cd34.fn-active-b9a3 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.notification-red-415c {
    min-height: 400px;
}

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

.west-d1e8.fn-active-b9a3 {
    display: block;
}

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

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

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

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

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

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

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

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

/* ============================================
   Featured Games
   ============================================ */
.preview-plasma-d7e3 {
    padding: var(--spacing-2xl) 0;
}

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

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

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

.description-9f85 a {
    display: block;
    color: inherit;
}

.description-9f85 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;
}

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

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

.paragraph_3fd2,
.primary-d1bf {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.item-a8ed {
    text-align: center;
}

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

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

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

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

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

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

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

.mask-da6b.fn-active-b9a3 .shadow-stone-ff86 {
    transform: rotate(45deg);
}

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

.mask-da6b.fn-active-b9a3 .table_green_1a37 {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

/* ============================================
   Final CTA
   ============================================ */
.accent-center-b6ad {
    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;
}

.accent-center-b6ad::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%;
}

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

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

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

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

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

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

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

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

.wrapper_3b61 ul {
    list-style: none;
}

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

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

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

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

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

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

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

.short-a696 {
    text-align: center;
}

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

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

.active-9f6a {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.active-9f6a 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);
}

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

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

/* ============================================
   Utility Classes
   ============================================ */
.search-91f3 {
    text-align: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .accent-first-969e {
        padding: var(--spacing-xl) 0;
    }
    
    .item_pressed_bed0 {
        flex-direction: column;
    }
    
    .item_pressed_bed0 > * {
        width: 100%;
    }
    
    .row-medium-65a5 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .blue-cd34 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .photo-complex-7a1e {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .hard-a316 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .purple-35f1,
    .paragraph-5b8f,
    .accent-center-b6ad,
    .icon_67d9 {
        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 */
.avatar_adb5 {
    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 */
.blue_396f,
.carousel_dynamic_3af8,
.description-9f85,
.logo_under_63d1 {
    will-change: transform;
}

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

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

.backdrop-last-e693 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

.overlay-86fa {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form_top_d564 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) {
    .lower_8b40 {
        grid-template-columns: 1fr;
    }
    
    .picture_eafd {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .thumbnail_e6fb {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .soft_5121 {
        grid-template-columns: 1fr;
    }
    
    .component_liquid_0ced {
        grid-template-columns: 1fr;
    }
    
    .accent_ce05 {
        grid-template-columns: 1fr;
    }
    
    .up_8263,
    .badge_hard_4ae9,
    .silver_2fa6 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .thumbnail_e6fb {
        grid-template-columns: 1fr;
    }
    
    .heading_gold_2f8c {
        font-size: 2rem;
    }
    
    .nav_5c6c {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.bronze-a3ea,
.badge-slow-ddb6 {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.bronze-a3ea h4,
.badge-slow-ddb6 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.bronze-a3ea ul,
.badge-slow-ddb6 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-green-0074 {
    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) {
    .out-8440 {
        grid-template-columns: 1fr;
    }
    
    .card_blue_e7e1 {
        position: static;
    }
}

@media (max-width: 768px) {
    .status-5c41 {
        grid-template-columns: 1fr;
    }
    
    .card_blue_e7e1,
    .bronze-a3ea,
    .badge-slow-ddb6 {
        padding: var(--spacing-md);
    }
    
    .hover_d01c {
        font-size: 2rem;
    }
}

/* css-noise: 770e */
.shadow-element-b4 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.3;
}
