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

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

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

.backdrop_831d.video_stale_18d1 {
    box-shadow: var(--shadow-lg);
}

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

.link-iron-2274 {
    padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

    .texture_0070 { display: none !important; }
}

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

.container-upper-eebf:hover .article-plasma-6348 {
    color: var(--primary-light);
    text-shadow: 0 2px 12px rgba(0, 212, 170, 0.5);
    transform: scale(1.02);
}

.article-plasma-6348 {
    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;
}

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

.container-upper-eebf:hover .video-e962 {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .article-plasma-6348 {
        font-size: 28px;
    }
    
    .video-e962 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1024px) {
    .article-plasma-6348 {
        font-size: 32px;
    }
    
    .video-e962 {
        font-size: 12px;
    }
}

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

.outer-19d0 li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

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

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

.outer-19d0 a:hover,
.background_next_ebd5:hover,
.hidden-9fa3.heading-old-8598:hover > .background_next_ebd5 {
    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);
}

.outer-19d0 a:active,
.background_next_ebd5:active {
    transform: translateY(0);
}

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

.hidden-9fa3.heading-old-8598 {
    position: relative;
}

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

.alert-5d23 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    border-radius: 10px;
    margin: 0 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 212, 170, 0.4);
    transition: all var(--transition-base);
}

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

.hidden-9fa3.heading-old-8598:hover .tag_lite_b325 {
    transform: rotate(180deg);
    opacity: 1;
}

.hidden-9fa3.heading-old-8598:focus-within .tag_lite_b325,
.hidden-9fa3.heading-old-8598.overlay-current-b792 .tag_lite_b325 {
    transform: rotate(180deg);
    opacity: 1;
}

.hidden-9fa3.heading-old-8598:hover .alert-5d23 {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.6);
}

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

.hidden-9fa3.heading-old-8598:hover .form-ca72 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hidden-9fa3.heading-old-8598:focus-within .form-ca72,
.hidden-9fa3.heading-old-8598.overlay-current-b792 .form-ca72 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

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

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

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

/* Keep dropdown open when hovering over it */
.hidden-9fa3.heading-old-8598 .form-ca72:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.hidden-9fa3.heading-old-8598:hover .notice_0a88 {
    animation: fadeInUp 0.3s ease-out forwards;
    opacity: 0;
}

.hidden-9fa3.heading-old-8598:hover .notice_0a88:nth-child(1) { animation-delay: 0.05s; }
.hidden-9fa3.heading-old-8598:hover .notice_0a88:nth-child(2) { animation-delay: 0.1s; }
.hidden-9fa3.heading-old-8598:hover .notice_0a88:nth-child(3) { animation-delay: 0.15s; }
.hidden-9fa3.heading-old-8598:hover .notice_0a88:nth-child(4) { animation-delay: 0.2s; }
.hidden-9fa3.heading-old-8598:hover .notice_0a88:nth-child(5) { animation-delay: 0.25s; }
.hidden-9fa3.heading-old-8598:hover .notice_0a88: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) {
    .element-mini-5475 {
        display: none !important;
    }
    
    .texture_0070 { display: inline-flex !important; }
}

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

    .texture_0070 { display: none !important; }
}

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

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

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

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

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

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

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

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

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


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

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

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


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

    .outer-19d0 a,
    .background_next_ebd5 {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .tag_lite_b325 {
        font-size: 0.6rem;
    }
    
    .form-ca72 {
        min-width: 190px;
    }
    
    .notice_0a88 {
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .background-fde4 {
        gap: 0.625rem;
    }
    
    .background-fde4 .block_rough_167a,
    .background-fde4 .image_2015 {
        padding: 0.5rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Large desktop: comfortable spacing */
@media (min-width: 1601px) and (max-width: 1919px) {
    .cool_e112 {
        padding: 1rem 2.5rem;
        gap: 1.25rem;
    }
    
    .outer-19d0 {
        gap: 0.625rem;
    }
    
    .outer-19d0 a,
    .background_next_ebd5 {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }
    
    .background-fde4 {
        gap: 0.875rem;
    }
    
    .background-fde4 .block_rough_167a,
    .background-fde4 .image_2015 {
        padding: 0.625rem 1.375rem;
        font-size: 0.9375rem;
    }
    
    .form-ca72 {
        min-width: 200px;
    }
}

/* Extra large desktop: optimal spacing */
@media (min-width: 1920px) {
    .cool_e112 {
        padding: 1.125rem 4rem;
        gap: 2rem;
    }
    
    .outer-19d0 {
        gap: 0.875rem;
    }
    
    .outer-19d0 a,
    .background_next_ebd5 {
        padding: 0.75rem 1.125rem;
        font-size: 1rem;
    }
    
    .background-fde4 {
        gap: 1rem;
    }
    
    .background-fde4 .block_rough_167a,
    .background-fde4 .image_2015 {
        padding: 0.75rem 1.625rem;
        font-size: 1rem;
    }
    
    .form-ca72 {
        min-width: 220px;
    }
    
    .notice_0a88 {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}

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

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

.carousel-ab33.overlay-current-b792 {
    visibility: visible;
    opacity: 1;
}

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

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

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

.dynamic-56ec {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.45);
}

.mini_e1f3 {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.35);
    background: rgba(26, 36, 66, 0.65);
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}
.mini_e1f3:hover { transform: translateY(-1px); background: rgba(33, 45, 82, 0.75); }

.west-545a {
    padding: 0.875rem;
    overflow-y: auto;
}

.wrapper-cold-17d9 {
    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;
}

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

.wrapper-cold-17d9 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;
}

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

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

.overlay_smooth_7c3f .layout-9995 {
    min-width: 0;
}

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

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

/* Overlay Background */
.outline-31bd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.outline-31bd.fn-active-a796 {
    visibility: visible;
    opacity: 1;
}

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

/* Content Container */
.popup_2c2b {
    position: absolute;
    top: 2.5%;
    left: 50%;
    transform: translate(-50%, 0) scale(0.9);
    width: 95%;
    max-width: 400px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 0.875rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.outline-31bd.fn-active-a796 .popup_2c2b {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
}

/* Desktop-only styling for the drawer: turn it into a compact dropdown panel */
@media (min-width: 768px) {
    .outline-31bd {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
    }

    .status-next-2926 {
        display: none;
    }

    .popup_2c2b {
        top: 0.75rem;
        left: auto;
        right: var(--spacing-md);
        transform: translateY(-8px);
        width: min(860px, calc(100% - (var(--spacing-md) * 2)));
        max-width: 860px;
        max-height: calc(100vh - var(--header-height) - 1.25rem);
        opacity: 0;
        padding: 1rem;
        border-radius: 16px;
    }

    .outline-31bd.fn-active-a796 .popup_2c2b {
        transform: translateY(0);
        opacity: 1;
    }

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

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

    .info-motion-74f5 {
        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;
    }

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

    .info-motion-74f5 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;
    }

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

    /* Desktop: simplify dropdown header area */
    .motion-7311 {
        display: none;
    }

    .video_rough_9371 {
        display: none;
    }

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

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

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

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

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

.outline-31bd.fn-active-a796 .slider_dirty_7059:nth-child(1) {
    animation-delay: 0.05s;
}

.outline-31bd.fn-active-a796 .slider_dirty_7059:nth-child(2) {
    animation-delay: 0.1s;
}

.outline-31bd.fn-active-a796 .slider_dirty_7059:nth-child(3) {
    animation-delay: 0.15s;
}

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

.purple-65a5 {
    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 */
.form-68c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

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

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

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

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

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

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

.filter_63b6:hover .accent-dirty-e9aa,
.filter_63b6:active .accent-dirty-e9aa {
    color: #00d4aa;
}

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

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

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

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

.layout-9995.fn-secondary-a796 {
    background: transparent;
    color: #00d4aa;
    border: 2px solid #00d4aa;
}

.layout-9995.fn-secondary-a796:hover,
.layout-9995.fn-secondary-a796:active {
    background: rgba(0, 212, 170, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 375px) {
    .filter_63b6 {
        padding: 0.75rem 0.625rem;
        min-height: 72px;
    }
    
    .action_e222 {
        font-size: 1.875rem;
    }
    
    .accent-dirty-e9aa {
        font-size: 0.8125rem;
    }
}

@media (min-width: 425px) {
    .popup_2c2b {
        padding: 1rem;
    }
    
    .motion-7311 {
        padding: 0.75rem 0.5rem 0.875rem;
    }
    
    .chip_473b {
        gap: 1rem;
    }
    
    .filter_63b6 {
        padding: 0.875rem 0.75rem;
        min-height: 75px;
    }
    
    .action_e222 {
        font-size: 2rem;
    }
    
    .accent-dirty-e9aa {
        font-size: 0.875rem;
    }
}

@media (min-height: 700px) {
    .popup_2c2b {
        padding: 1.25rem;
    }
    
    .motion-7311 {
        padding: 0.875rem 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .motion-7311 h3 {
        font-size: 1.25rem;
    }
    
    .chip_473b {
        gap: 1.25rem;
    }
    
    .purple-65a5 {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .filter_63b6 {
        padding: 1rem 0.875rem;
        min-height: 80px;
    }
    
    .action_e222 {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }
    
    .accent-dirty-e9aa {
        font-size: 0.9375rem;
    }
    
    .layout-9995 {
        padding: 0.875rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   Buttons
   ============================================ */
.block_rough_167a,
.image_2015,
.iron_4bc8,
.feature_f2f8,
.yellow-f872,
.badge-in-5fb7,
.pro-6cfa {
    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) {
    .block_rough_167a,
    .image_2015,
    .iron_4bc8 {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.block_rough_167a,
.feature_f2f8,
.pro-6cfa {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.block_rough_167a:hover,
.feature_f2f8:hover,
.pro-6cfa:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
}

.image_2015,
.yellow-f872 {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.image_2015:hover,
.yellow-f872:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.iron_4bc8,
.badge-in-5fb7 {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.iron_4bc8:hover,
.badge-in-5fb7:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.feature_f2f8,
.yellow-f872 {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.pro-6cfa,
.badge-in-5fb7 {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.out_22c9 {
    z-index: 1;
}

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

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

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

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

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

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

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

.image_lower_e8a4 .lite-8d42 {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

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

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

.element_down_0fc3 {
    position: relative;
}

.old_a191 {
    display: none;
}

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

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

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

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

.hard-d2cc.module_52ef {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.video-df21.pink-bf1c {
    background: var(--secondary-color);
}

.video-df21.medium-a38b {
    background: #ef4444;
}

.video-df21.wide_dab9 {
    background: var(--accent-color);
}

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

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

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

.message-silver-756b {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

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

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

.hidden-west-a9a5:hover {
    gap: var(--spacing-xs);
}

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

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

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

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

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

.out-e108.fn-active-a796 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 212, 170, 0.1);
}

.soft_ab5b {
    min-height: 400px;
}

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

.accordion-complex-ac42.fn-active-a796 {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pro-c3ba,
.rough-d44e {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.list-next-e3d2 {
    text-align: center;
}

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

.copper-7ca5 {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.media_53c9.fn-active-a796 .avatar-1a65 {
    transform: rotate(45deg);
}

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

.media_53c9.fn-active-a796 .center_e67b {
    max-height: 1000px;
}

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

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

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

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

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

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

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

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

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

.tag-glass-e5c7::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%;
}

.card-next-ab5f {
    text-align: center;
    position: relative;
    z-index: 1;
}

.card-next-ab5f h2 {
    margin-bottom: var(--spacing-md);
}

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

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

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

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

.icon-445a {
    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);
}

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

.tertiary-orange-a69a ul {
    list-style: none;
}

.tertiary-orange-a69a ul li {
    margin-bottom: var(--spacing-xs);
}

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

.tertiary-orange-a69a ul li a:hover {
    color: var(--primary-color);
}

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

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

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

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

.green-3100 {
    text-align: center;
}

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

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

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

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

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

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

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .bronze_ec88 {
        padding: var(--spacing-xl) 0;
    }
    
    .hidden_wide_335c {
        flex-direction: column;
    }
    
    .hidden_wide_335c > * {
        width: 100%;
    }
    
    .background_fluid_19cd {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .out-e108 {
        min-width: 120px;
        font-size: 0.875rem;
        padding: var(--spacing-sm);
    }
    
    .summary_6c51 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .icon-445a {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .backdrop_831d,
    .outline-31bd,
    .tag-glass-e5c7,
    .large-0ddf {
        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 */
.frame_left_7208 {
    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 */
.west_b458,
.paper_cfff,
.column_steel_afba,
.motion_03ba {
    will-change: transform;
}

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

.grid-new-0bc0 {
    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);
}

.widget-under-381f {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

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

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

.surface-in-6791 {
    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);
}

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

.element-lower-79c4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-fixed-1e4b {
    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);
}

.block-fixed-1e4b:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-purple-8972 {
    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);
}

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

.avatar-purple-8972 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) {
    .hard_3eda {
        grid-template-columns: 1fr;
    }
    
    .grid-new-0bc0 {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .overlay-static-5817 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-324d {
        grid-template-columns: 1fr;
    }
    
    .mask_out_4d78 {
        grid-template-columns: 1fr;
    }
    
    .footer-fd0c {
        grid-template-columns: 1fr;
    }
    
    .small_cbd6,
    .disabled_cold_7000,
    .liquid_69fd {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .overlay-static-5817 {
        grid-template-columns: 1fr;
    }
    
    .simple-744b {
        font-size: 2rem;
    }
    
    .red-16eb {
        font-size: 2.5rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.container-basic-f92c h4,
.section_60b8 h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.container-basic-f92c ul,
.section_60b8 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.container-basic-f92c ul li strong {
    color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

.module-dirty-74fc {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
}

.item-46d2 {
    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) {
    .lower-8412 {
        grid-template-columns: 1fr;
    }
    
    .gradient_3b8d {
        position: static;
    }
}

@media (max-width: 768px) {
    .focused-dcfd {
        grid-template-columns: 1fr;
    }
    
    .gradient_3b8d,
    .container-basic-f92c,
    .section_60b8 {
        padding: var(--spacing-md);
    }
    
    .tertiary_0d8a {
        font-size: 2rem;
    }
}

/* css-noise: 3fa8 */
.widget-item-z0 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
