/*
 * 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.card-dim-356a {
    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
   ============================================ */
.secondary-58cb {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

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

.full_6a15.search_bright_2f71 {
    box-shadow: var(--shadow-lg);
}

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

.static_fa06 {
    padding: 0;
}

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

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

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

.accent-orange-164e {
    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);
}

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

@media (min-width: 768px) {
    .accent-orange-164e { font-size: 28px; }
    .wood_6719 { font-size: 11px; }
}

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

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

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

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

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

    .green_18de { display: none !important; }
}

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

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

.lite-1c36 {
    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;
}

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

.carousel_3999:hover .lite_853d {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .lite-1c36 {
        font-size: 28px;
    }
    
    .lite_853d {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .lite-1c36 {
        font-size: 32px;
    }
    
    .lite_853d {
        font-size: 12px;
    }
}

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

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

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

.wrapper-ccb4 a,
.notice-black-4925 {
    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 */
.wrapper-ccb4 button.notice-black-4925 {
    background: transparent;
    border: 0;
    font: inherit;
    line-height: inherit;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    .wrapper-ccb4 a,
    .notice-black-4925 {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
}

.wrapper-ccb4 a:hover,
.notice-black-4925:hover,
.glass-5029.secondary_4858:hover > .notice-black-4925 {
    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);
}

.wrapper-ccb4 a:active,
.notice-black-4925:active {
    transform: translateY(0);
}

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

.glass-5029.secondary_4858 {
    position: relative;
}

.notice-black-4925 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chip-warm-48bf {
    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);
}

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

.glass-5029.secondary_4858:hover .photo_green_477a {
    transform: rotate(180deg);
    opacity: 1;
}

.glass-5029.secondary_4858:focus-within .photo_green_477a,
.glass-5029.secondary_4858.out_2bfe .photo_green_477a {
    transform: rotate(180deg);
    opacity: 1;
}

.glass-5029.secondary_4858:hover .chip-warm-48bf {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.glass-5029.secondary_4858:hover .carousel-mini-5738 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.glass-5029.secondary_4858:focus-within .carousel-mini-5738,
.glass-5029.secondary_4858.out_2bfe .carousel-mini-5738 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.glass-5029.secondary_4858 .carousel-mini-5738:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.glass-5029.secondary_4858:hover .background_narrow_7cc1 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.glass-5029.secondary_4858:hover .background_narrow_7cc1:nth-child(1) { animation-delay: 0.05s; }
.glass-5029.secondary_4858:hover .background_narrow_7cc1:nth-child(2) { animation-delay: 0.1s; }
.glass-5029.secondary_4858:hover .background_narrow_7cc1:nth-child(3) { animation-delay: 0.15s; }
.glass-5029.secondary_4858:hover .background_narrow_7cc1:nth-child(4) { animation-delay: 0.2s; }
.glass-5029.secondary_4858:hover .background_narrow_7cc1:nth-child(5) { animation-delay: 0.25s; }
.glass-5029.secondary_4858:hover .background_narrow_7cc1: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) {
    .panel-wide-2291 {
        display: none !important;
    }
    
    .green_18de { display: inline-flex !important; }
}

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

    .green_18de { display: none !important; }
}

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

.out-904f a {
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

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

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

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

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

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


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

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

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


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

    .wrapper-ccb4 a,
    .notice-black-4925 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .photo_green_477a {
        font-size: 0.6rem;
    }
    
    .carousel-mini-5738 {
        min-width: 190px;
    }
    
    .background_narrow_7cc1 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .out-904f {
        gap: 0.625rem;
    }
    
    .out-904f .up_1bc9,
    .out-904f .gradient-5b28 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .media_lower_358d {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .wrapper-ccb4 {
        gap: 0.625rem;
    }
    
    .wrapper-ccb4 a,
    .notice-black-4925 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .out-904f {
        gap: 0.875rem;
    }
    
    .out-904f .up_1bc9,
    .out-904f .gradient-5b28 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .carousel-mini-5738 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .media_lower_358d {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .wrapper-ccb4 {
        gap: 0.875rem;
    }
    
    .wrapper-ccb4 a,
    .notice-black-4925 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .out-904f {
        gap: 1rem;
    }
    
    .out-904f .up_1bc9,
    .out-904f .gradient-5b28 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .carousel-mini-5738 {
        min-width: 220px;
    }
    
    .background_narrow_7cc1 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.border_e4f7.out_2bfe {
    visibility: visible;
    opacity: 1;
}

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

.primary-6f69 {
    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;
}

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

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

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

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

.paper-6b97 {
    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;
}

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

.paper-6b97 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;
}

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

.green-6a5c {
    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);
}

.green-6a5c .basic-17a3 {
    min-width: 0;
}

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

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

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

.banner_8f19.fn-active-9ee0 {
    visibility: visible;
    opacity: 1;
}

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

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

.banner_8f19.fn-active-9ee0 .pagination_green_f348 {
    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) {
    .banner_8f19 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .detail_stone_2278 {
        display: none;
    }

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

    .banner_8f19.fn-active-9ee0 .pagination_green_f348 {
        transform: translateY(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

    .caption_75c7 {
        display: none;
    }

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

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

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

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

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

.banner_8f19.fn-active-9ee0 .light_3c48:nth-child(1) {
    animation-delay: 0.05s;
}

.banner_8f19.fn-active-9ee0 .light_3c48:nth-child(2) {
    animation-delay: 0.1s;
}

.banner_8f19.fn-active-9ee0 .light_3c48:nth-child(3) {
    animation-delay: 0.15s;
}

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

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

.heading-smooth-617d {
    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;
}

.heading-smooth-617d::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;
}

.heading-smooth-617d:hover::before,
.heading-smooth-617d:active::before {
    opacity: 1;
}

.heading-smooth-617d:hover,
.heading-smooth-617d: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);
}

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

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

.heading-smooth-617d:hover .heading_narrow_0f86,
.heading-smooth-617d:active .heading_narrow_0f86 {
    color: #00d4aa;
}

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

.basic-17a3 {
    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;
}

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

.basic-17a3.fn-primary-9ee0:hover,
.basic-17a3.fn-primary-9ee0:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.5);
}

.basic-17a3.fn-secondary-9ee0 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.basic-17a3.fn-secondary-9ee0:hover,
.basic-17a3.fn-secondary-9ee0:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .heading-smooth-617d {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .section_mini_174d {
        font-size: 1.875rem;
    }
    
    .heading_narrow_0f86 {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .pagination_green_f348 {
        padding: 1rem;
    }
    
    .popup_dc92 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .description-460b {
        gap: 1rem;
    }
    
    .heading-smooth-617d {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .section_mini_174d {
        font-size: 2rem;
    }
    
    .heading_narrow_0f86 {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .pagination_green_f348 {
        padding: 1.25rem;
    }
    
    .popup_dc92 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .popup_dc92 h3 {
        font-size: 1.25rem;
    }
    
    .description-460b {
        gap: 1.25rem;
    }
    
    .preview-d7d4 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .heading-smooth-617d {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .section_mini_174d {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .heading_narrow_0f86 {
        font-size: 0.9375rem;
    }
    
    .basic-17a3 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.up_1bc9,
.gradient-5b28,
.red_eca5,
.description_a912,
.row-8b55,
.label-new-14f9,
.module-down-22b6 {
    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) {
    .up_1bc9,
    .gradient-5b28,
    .red_eca5 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.up_1bc9,
.description_a912,
.module-down-22b6 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.up_1bc9:hover,
.description_a912:hover,
.module-down-22b6:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.gradient-5b28,
.row-8b55 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.gradient-5b28:hover,
.row-8b55:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.red_eca5,
.label-new-14f9 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.red_eca5:hover,
.label-new-14f9:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.description_a912,
.row-8b55 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.module-down-22b6,
.label-new-14f9 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.sort_pink_c703 {
    z-index: 1;
}

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

.shade-hard-3cc7 {
    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);
}

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

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

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

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

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

.glass_4592 .gas_ca6d {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.tag-c63d {
    position: relative;
}

.frame_dd64 {
    display: none;
}

.input-solid-35f8 {
    display: block;
    margin-bottom: var(--spacing-md);
}

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

    .input-solid-35f8 {
        display: none;
        margin-bottom: 0;
    }
}

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

.tall-7d6f.shadow_outer_f301 {
    text-align: center;
}

.tall-7d6f h2 {
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

.row-8e5a {
    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));
}

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

.box-dim-f8bf:hover .row-8e5a img {
    /* Keep image fully visible on hover (no zoom-crop) */
    transform: none;
}

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

.white-b848.overlay_steel_3735 {
    background: var(--secondary-color);
}

.white-b848.fixed_23ec {
    background: #ef4444;
}

.white-b848.popup_8e91 {
    background: var(--accent-color);
}

.focus-bright-45f5 {
    padding: var(--spacing-lg);
}

.focus-bright-45f5 h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.focus-bright-45f5 p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

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

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

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

.item_full_7593.fn-active-9ee0 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.huge_72dc {
    min-height: 400px;
}

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

.sidebar_d83e.fn-active-9ee0 {
    display: block;
}

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

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

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

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

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

.accordion-wood-1e83 {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

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

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

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

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

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

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

.active-0405 a {
    display: block;
    color: inherit;
}

.active-0405 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;
}

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

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

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

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

.badge_5e88 {
    text-align: center;
}

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

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

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

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

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

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

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

.chip_small_6fa9.fn-active-9ee0 .action-7c6a {
    transform: rotate(45deg);
}

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

.chip_small_6fa9.fn-active-9ee0 .narrow-5dfc {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

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

.over-37b2 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.over-37b2 h2 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

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

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

.box-e18b ul {
    list-style: none;
}

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

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

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

.caption-easy-1de0 {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

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

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

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

.info-35f4 {
    text-align: center;
}

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

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

.solid-24dc {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.solid-24dc 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);
}

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

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

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

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

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .full_6a15,
    .banner_8f19,
    .gallery_2dbb,
    .north_5332 {
        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 */
.out-1f46 {
    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 */
.pagination_930a,
.box-dim-f8bf,
.active-0405,
.fast-c213 {
    will-change: transform;
}

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

.dynamic-2ae4 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.lower_dca7 {
    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
   ============================================ */
.active-east-623f {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

.sidebar-action-5cf9 {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.list_stale_4cbb {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.list_stale_4cbb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

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

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

.liquid-a699 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) {
    .layout-f825 {
        grid-template-columns: 1fr;
    }
    
    .dynamic-2ae4 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .motion_fcc4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .glass-20f9 {
        grid-template-columns: 1fr;
    }
    
    .form_213d {
        grid-template-columns: 1fr;
    }
    
    .notice_f2aa {
        grid-template-columns: 1fr;
    }
    
    .notice_43ac,
    .carousel-bd41,
    .gradient_5581 {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .motion_fcc4 {
        grid-template-columns: 1fr;
    }
    
    .box-top-f231 {
        font-size: 2rem;
    }
    
    .medium_a8fa {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_5b0e ul,
.black_9fe5 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

.detail-silver-3ef6 {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
}

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

.disabled-9738 {
    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) {
    .wide_a90b {
        grid-template-columns: 1fr;
    }
    
    .content_active_2a93 {
        position: static;
    }
}

@media (max-width: 768px) {
    .title-tiny-181c {
        grid-template-columns: 1fr;
    }
    
    .content_active_2a93,
    .carousel_5b0e,
    .black_9fe5 {
        padding: var(--spacing-md);
    }
    
    .middle-38e6 {
        font-size: 2rem;
    }
}

/* css-noise: 59a5 */
.shadow-element-x8 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
