/* Cyberpunk Casino Theme - 090bet */
@import url('https://fonts.hover_soft_d4e9.label-new-03d2/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    /* Cyberpunk Color System */
    --cyber-bg-dark: #0a0e17;
    --cyber-bg-medium: #111827;
    --cyber-bg-light: #1e293b;
    --cyber-bg-card: #162032;
    
    /* Neon Colors */
    --neon-cyan: #00f0ff;
    --neon-cyan-dim: #0891b2;
    --neon-magenta: #ff00ff;
    --neon-pink: #f472b6;
    --neon-green: #22c55e;
    --neon-yellow: #facc15;
    --neon-orange: #f97316;
    
    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-accent: var(--neon-cyan);
    
    /* Gradient Presets */
    --gradient-cyber: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    --gradient-card: linear-gradient(180deg, rgba(22,32,50,0.9) 0%, rgba(10,14,23,0.95) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0,240,255,0.15) 0%, transparent 70%);
    
    /* Shadows & Glows */
    --glow-cyan: 0 0 20px rgba(0,240,255,0.3), 0 0 40px rgba(0,240,255,0.1);
    --glow-magenta: 0 0 20px rgba(255,0,255,0.3), 0 0 40px rgba(255,0,255,0.1);
    --glow-green: 0 0 20px rgba(34,197,94,0.3);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-elevated: 0 25px 50px -12px rgba(0,0,0,0.5);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cyber-bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    background-image: 
        radial-gradient(ellipse at 20% 0%, rgba(0,240,255,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255,0,255,0.05) 0%, transparent 50%);
    min-height: 100vh;
}

/* Container */
.purple-eb0c {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .purple-eb0c {
        padding: 0 var(--space-xl);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--neon-magenta);
}

strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Bar */
.status_bde2 {
    background: linear-gradient(90deg, var(--cyber-bg-medium) 0%, var(--cyber-bg-dark) 100%);
    border-bottom: 1px solid rgba(0,240,255,0.2);
    padding: var(--space-sm) 0;
    font-size: 0.85rem;
}

.gallery-dirty-56d0 {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.form_1513 {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

@media (max-width: 768px) {
    .gallery-dirty-56d0 {
        gap: var(--space-md);
        font-size: 0.75rem;
    }
}

/* Cyber Header */
.hard_8434 {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,240,255,0.3);
    position: sticky;
    top: 0;
    /* Keep header & dropdown above hero overlays/cards on all pages */
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    overflow: visible;
}

.clean_cb1f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    gap: var(--space-lg);
    overflow: visible;
}

.banner_tiny_8c9c a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.banner_tiny_8c9c img {
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
}

.banner_tiny_8c9c img:hover {
    transform: scale(1.05);
}

.brown_3b35 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-0b25 {
    display: flex;
    gap: var(--space-sm);
    overflow: visible;
}

.tertiary_805d {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
    text-decoration: none;
}

.tertiary_805d:hover {
    color: var(--neon-cyan);
}

/* Desktop Dropdown Navigation */
.breadcrumb_thick_721a {
    position: relative;
}

/* Hover bridge: prevents flicker when moving mouse from trigger to menu */
.breadcrumb_thick_721a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    pointer-events: none;
}

.tiny_7940 {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
}

.dropdown_purple_ca6c {
    font-size: 0.6rem;
    transition: transform var(--transition-normal);
}

.breadcrumb_thick_721a:hover .dropdown_purple_ca6c {
    transform: rotate(180deg);
}

.logo_wood_42e9 {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--cyber-bg-medium);
    border: 2px solid var(--neon-cyan);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Keep a smooth reveal without creating a hover gap */
    transform: translateY(8px);
    transition: all var(--transition-normal);
    z-index: 10000;
    box-shadow: var(--glow-cyan), var(--shadow-card);
}

.breadcrumb_thick_721a:hover .logo_wood_42e9 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Touch/keyboard support: allow dropdown open via focus (tap) */
.breadcrumb_thick_721a:focus-within .logo_wood_42e9 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* JS-assisted open state (mainly for touch devices) */
.breadcrumb_thick_721a.east-913e .logo_wood_42e9 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.logo_wood_42e9 a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    margin-bottom: var(--space-xs);
}

.logo_wood_42e9 a:last-child {
    margin-bottom: 0;
}

.logo_wood_42e9 a:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    transform: translateX(5px);
}

.gallery_up_6c86 {
    display: flex;
    gap: var(--space-md);
}

/* Hamburger Menu Toggle */
.bottom-237d {
    background: var(--cyber-bg-light);
    border: 2px solid var(--neon-cyan);
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.bottom-237d:hover {
    background-color: var(--neon-cyan);
    border-color: var(--neon-magenta);
}

.bottom-237d:hover span {
    background-color: var(--cyber-bg-dark);
}

.bottom-237d span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--neon-cyan);
    border-radius: 1px;
    transition: all var(--transition-normal);
    margin: 2px 0;
}

.bottom-237d.fn-active-82fa {
    background-color: var(--neon-cyan);
    border-color: var(--neon-magenta);
}

.bottom-237d.fn-active-82fa span {
    background-color: var(--cyber-bg-dark);
}

.bottom-237d.fn-active-82fa span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bottom-237d.fn-active-82fa span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.bottom-237d.fn-active-82fa span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hamburger Navigation Menu */
.notice-bronze-4367 {
    background-color: var(--cyber-bg-medium);
    border-top: 1px solid var(--neon-cyan);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.notice-bronze-4367.fn-active-82fa {
    max-height: 800px;
}

.new_b377 {
    padding: var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    max-height: 750px;
    overflow-y: auto;
    background: var(--cyber-bg-medium);
}

.card-31d9 {
    margin-bottom: var(--space-sm);
}

.card-31d9 h4 {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    border-bottom: 2px solid var(--neon-cyan);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    font-weight: 700;
    position: sticky;
    top: 0;
    background: var(--cyber-bg-medium);
    z-index: 10;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-31d9 a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    text-decoration: none;
    padding: var(--space-md);
    margin-bottom: var(--space-xs);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid var(--neon-cyan);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
    background-color: var(--cyber-bg-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.card-31d9 a:hover {
    color: var(--cyber-bg-dark);
    background-color: var(--neon-cyan);
    border-color: var(--neon-magenta);
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.card-31d9 a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Add shimmer effect to buttons */
.card-31d9 a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s;
}

.card-31d9 a:hover::before {
    left: 100%;
}

/* Mobile Navigation Full Width Section */
.column-simple-1752 {
    grid-column: 1 / -1;
}

.widget-smooth-5bcc {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.widget-smooth-5bcc a {
    flex: 1;
    max-width: 180px;
}

@media (max-width: 992px) {
    .banner-0b25 {
        display: none;
    }
    
    .bottom-237d {
        display: flex;
    }

    /* Mobile header layout: keep brand + hamburger on first row, show action buttons on second row */
    .clean_cb1f {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .banner_tiny_8c9c {
        flex: 1 1 auto;
        min-width: 0;
    }

    .bottom-237d {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .gallery_up_6c86 {
        order: 3;
        display: flex;
        width: 100%;
        justify-content: center;
        gap: var(--space-sm);
        margin-top: var(--space-sm);
    }

    .gallery_up_6c86 .notice_dim_716c {
        /* Keep the two actions compact in the header (no full-width stretching) */
        flex: 0 1 auto;
        min-width: 0; /* required for text-overflow in flex items */
        justify-content: center;
        max-width: 48%;
        font-size: 0.78rem;
        padding: 0.6rem 0.8rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Ensure desktop nav is always visible (prevents accidental overrides from page CSS) */
@media (min-width: 993px) {
    .banner-0b25 {
        display: flex !important;
    }
    .bottom-237d {
        display: none !important;
    }
    .notice-bronze-4367 {
        display: none !important;
    }
}

/* Mobile: keep hamburger menu collapsed by default; expand only when active */
@media (max-width: 992px) {
    .notice-bronze-4367 {
        max-height: 0;
        overflow: hidden;
    }
    .notice-bronze-4367.fn-active-82fa {
        max-height: 800px;
    }
}

/* Mobile actions (cloned from .gallery_up_6c86 into hamburger menu) */
.center-1015 {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    border: 1px solid rgba(0,240,255,0.2);
    border-radius: var(--radius-md);
    background: rgba(10,14,23,0.6);
}
.center-1015 .notice_dim_716c {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-weight: 800;
}

@media (max-width: 576px) {
    .gallery_up_6c86 {
        /* Keep header buttons side-by-side on small screens */
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .gallery_up_6c86 .notice_dim_716c {
        max-width: 48%;
        font-size: 0.72rem;
        padding: 0.55rem 0.65rem;
        letter-spacing: 0.06em;
    }
    
    .new_b377 {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        max-height: 600px;
        padding: var(--space-sm);
    }
    
    .card-31d9 {
        margin-bottom: var(--space-xs);
    }
    
    .card-31d9 h4 {
        font-size: 0.85rem;
        padding: var(--space-sm) 0;
        margin-bottom: var(--space-xs);
    }
    
    .card-31d9 a {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.4;
        min-height: 52px;
        font-weight: 700;
        border-width: 2px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    }
    
    .widget-smooth-5bcc {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .widget-smooth-5bcc a {
        max-width: none;
        white-space: normal;
        min-height: 48px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .new_b377 {
        max-height: 500px;
        padding: var(--space-xs);
    }
    
    .card-31d9 h4 {
        font-size: 0.8rem;
        margin-bottom: var(--space-xs);
    }
    
    .card-31d9 a {
        font-size: 0.85rem;
        padding: var(--space-sm) var(--space-md);
        min-height: 48px;
        font-weight: 700;
        border-width: 2px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }
}

/* Buttons - Cyberpunk Style */
.notice_dim_716c {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.gas_8e7f {
    background: var(--gradient-cyber);
    color: var(--cyber-bg-dark);
    box-shadow: var(--glow-cyan);
}

.gas_8e7f:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0,240,255,0.5), 0 0 60px rgba(0,240,255,0.2);
    color: var(--cyber-bg-dark);
}

.gas_8e7f::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.gas_8e7f:hover::before {
    left: 100%;
}

.texture_ed5c {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0,240,255,0.2);
}

.texture_ed5c:hover {
    background: rgba(0,240,255,0.1);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
    color: var(--neon-cyan);
}

.detail-south-1133 {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1rem;
    min-height: 52px;
}

.label-brown-ec27 {
    background: var(--neon-cyan);
    color: var(--cyber-bg-dark);
}

.label-brown-ec27:hover {
    background: var(--neon-magenta);
    color: white;
}

.button_dd4c {
    background: var(--neon-green);
    color: var(--cyber-bg-dark);
}

.button_dd4c:hover {
    background: #16a34a;
    color: white;
}

/* Breadcrumb Navigation */
.new-2de1 {
    background: var(--cyber-bg-medium);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0,240,255,0.1);
}

.aside-8e6e {
    display: flex;
    gap: var(--space-sm);
    list-style: none;
    font-size: 0.85rem;
}

.aside-8e6e li::after {
    content: '›';
    margin-left: var(--space-sm);
    color: var(--text-muted);
}

.aside-8e6e li:last-child::after {
    display: none;
}

.aside-8e6e a {
    color: var(--neon-cyan);
}

.aside-8e6e span {
    color: var(--text-muted);
}

/* Hero Section - Cyberpunk */
.container-1d2a {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.element_61d2 {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.row_a402 {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.notification_e200 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.bright_c32f {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: -100px;
    left: -100px;
}

.hero-south-5c87 {
    width: 300px;
    height: 300px;
    background: var(--neon-magenta);
    bottom: -50px;
    right: -50px;
}

.notice-0306 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.icon-solid-2a7f {
    display: inline-block;
    background: rgba(0,240,255,0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.wrapper_short_7792 h1 {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.outer-6a69 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.north-52e9 {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.aside_advanced_97d8 {
    text-align: center;
}

.cold_adf9 {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.liquid-ea7c {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.out-e826 {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hidden_b23e {
    position: relative;
}

.video_8a10 {
    border-radius: var(--radius-xl);
    box-shadow: var(--glow-cyan), var(--shadow-elevated);
    border: 2px solid rgba(0,240,255,0.3);
}

.info_89ec {
    position: absolute;
    inset: 0;
}

.hidden-advanced-816b {
    position: absolute;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(0,240,255,0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    animation: float 3s ease-in-out infinite;
}

.badge_397c { top: 10%; left: -10%; animation-delay: 0s; }
.info-bceb { top: 50%; right: -15%; animation-delay: 1s; }
.pressed_1c6d { bottom: 10%; left: 5%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .notice-0306 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .north-52e9 {
        justify-content: center;
    }
    
    .out-e826 {
        justify-content: center;
    }
    
    .hidden_b23e {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .info_89ec {
        display: none;
    }
}

@media (max-width: 576px) {
    .container-1d2a {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .north-52e9 {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .out-e826 {
        flex-direction: column;
    }
    
    .out-e826 .notice_dim_716c {
        width: 100%;
    }
}

/* Section Styles */
.photo_9c23 {
    padding: var(--space-3xl) 0;
}

.photo_9c23.surface_99e1 {
    background: var(--cyber-bg-medium);
}

.input-fresh-fbad {
        text-align: center;
    margin-bottom: var(--space-2xl);
}

.fixed-637f {
    display: inline-block;
    background: rgba(0,240,255,0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
}

.gallery_6d7d {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.layout_fd08 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.picture_thick_2bab {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.picture_thick_2bab:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

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

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

.picture_thick_2bab p {
    font-size: 0.95rem;
    margin: 0;
}

/* About Section */
.caption-5d50 {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

.light_a2bf h3 {
    color: var(--neon-cyan);
    font-size: 1.25rem;
}

.nav_e831 {
    position: sticky;
    top: 100px;
}

.accordion-7595 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.article-fresh-2eb5 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.article-fresh-2eb5:last-child {
    border: none;
}

.button-cb8f {
    color: var(--neon-green);
    font-size: 1.25rem;
}

.up_8daa {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .caption-5d50 {
        grid-template-columns: 1fr;
    }
    
    .nav_e831 {
        position: static;
    }
}

/* Content Wrapper */
.alert-white-78ea {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.alert-white-78ea.tertiary-lower-804d {
    direction: rtl;
}

.alert-white-78ea.tertiary-lower-804d > * {
    direction: ltr;
}

.pagination-d82a {
    margin: 0;
}

.tertiary_easy_6318 {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,240,255,0.2);
    transition: all var(--transition-normal);
}

.tertiary_easy_6318:hover {
    transform: scale(1.02);
    box-shadow: var(--glow-cyan);
    border-color: var(--neon-cyan);
}

figcaption {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.stale_c28c {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
}

.content_full_54d2 {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (max-width: 992px) {
    .alert-white-78ea {
        grid-template-columns: 1fr;
    }
    
    .alert-white-78ea.tertiary-lower-804d {
        direction: ltr;
    }
}

/* Sports/Games Grid */
.wrapper-active-a4b9, .large-6ae1, .black_4af3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.bottom_b442, .fluid-298a, .down-d698 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.bottom_b442:hover, .fluid-298a:hover, .down-d698:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.mask_31b1, .blue_e0c2, .red_7208 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.bottom_b442 h4, .fluid-298a h4, .down-d698 h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.bottom_b442 p, .fluid-298a p, .down-d698 p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

/* Slots Showcase */
.background-ae9f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.texture_black_0967 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.texture_black_0967 h4 {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0,240,255,0.2);
}

.title-large-9b96 {
    list-style: none;
}

.title-large-9b96 li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.title-large-9b96 li:last-child {
    border: none;
}

/* Bonus Section */
.row_huge_4bc9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.gallery-0898 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.gallery-0898.caption_7a0d {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.gallery-0898.caption_7a0d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.gas_75cd {
    display: inline-block;
    background: rgba(0,240,255,0.2);
    color: var(--neon-cyan);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.gallery-0898 h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.gallery-0898 ul {
    list-style: none;
    margin: var(--space-md) 0;
}

.gallery-0898 li {
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.basic-7c25 h3 {
    color: var(--neon-yellow);
}

/* Register Steps */
.tabs-00a3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.advanced_8e14 {
    text-align: center;
    position: relative;
}

.menu_small_172b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cyber-bg-dark);
    margin: 0 auto var(--space-md);
}

.advanced_8e14 h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

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

/* Account Features */
.video-right-840c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.lower_98b9 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.lower_98b9:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
}

/* Support Channels */
.video-5057 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.thumbnail-easy-6737 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.thumbnail-easy-6737:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
}

.fresh-3b12 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.dynamic_acf0 {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: 0.8rem;
    color: var(--neon-green);
    background: rgba(34,197,94,0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
}

.fresh-37be {
    background: rgba(0,240,255,0.05);
    border-left: 3px solid var(--neon-cyan);
    padding: var(--space-md);
    margin-top: var(--space-lg);
    font-style: italic;
}

/* FAQ Section */
.accordion_4eb5 {
    background: var(--cyber-bg-dark);
}

.tertiary-hovered-8151 {
    max-width: 900px;
    margin: 0 auto;
}

.menu_bronze_0366 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.menu_bronze_0366:hover {
    border-color: rgba(0,240,255,0.3);
}

.menu_bronze_0366[open] {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.menu_bronze_0366 summary {
    padding: var(--space-lg);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.menu_bronze_0366 summary::-webkit-details-marker {
    display: none;
}

.menu_bronze_0366 summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--neon-cyan);
    transition: transform var(--transition-normal);
}

.menu_bronze_0366[open] summary::after {
    transform: rotate(45deg);
}

.out_3065 {
    padding: 0 var(--space-lg) var(--space-lg);
}

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

/* CTA Final Section */
.pattern-c322 {
    background: linear-gradient(180deg, var(--cyber-bg-medium) 0%, var(--cyber-bg-dark) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.header-be50 img,
.image-fdfe img,
img.action_99ea {
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-cyan);
}

.header-be50 h2 {
    margin-bottom: var(--space-md);
}

.header-be50 p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.chip_735a {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Cyber Footer */
.aside-8d3f {
    background: var(--cyber-bg-medium);
    border-top: 1px solid rgba(0,240,255,0.2);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.hot_dee0 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.title_easy_e65e h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-md);
}

.title_easy_e65e p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.title_easy_e65e nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.title_easy_e65e nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.title_easy_e65e nav a:hover {
    color: var(--neon-cyan);
}

.last-cdfe {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.last-cdfe p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.layout_light_5015 {
    display: flex;
    gap: var(--space-sm);
}

.layout_light_5015 .aside_purple_50b9 {
    background: rgba(0,240,255,0.1);
    border: 1px solid rgba(0,240,255,0.2);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .hot_dee0 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hot_dee0 {
        grid-template-columns: 1fr;
    text-align: center;
}

    .title_easy_e65e nav {
        align-items: center;
    }
    
    .last-cdfe {
        flex-direction: column;
        text-align: center;
    }
}

/* Legal Sections */
.secondary_dynamic_21a3 {
    background: var(--cyber-bg-dark);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(0,240,255,0.1);
}

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

.wrapper-fe01 h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--neon-cyan);
}

.wrapper-fe01 p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Article Meta - E-E-A-T */
.small_d4ef {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gallery-dim-8761 {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.status_right_a447 {
    font-size: 1rem;
}

/* Testimonials Section - E-E-A-T Experience */
.link_green_f745 {
    background: var(--cyber-bg-medium);
    padding: var(--space-3xl) 0;
}

.fast-bb7b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.accent_rough_e512 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-normal);
}

.accent_rough_e512:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.nav_cc3c {
    margin-bottom: var(--space-md);
}

.preview-slow-ef63 {
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.accent_rough_e512 blockquote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 var(--space-lg) 0;
    padding-left: var(--space-md);
    border-left: 3px solid var(--neon-cyan);
}

.content-8093 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.summary-upper-e44e {
    font-size: 2rem;
    background: rgba(0,240,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-new-e7e6 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.info-new-e7e6 cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
}

.brown_b9e3 {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fresh_0d2f {
    font-size: 0.75rem;
    color: var(--neon-green);
    background: rgba(34,197,94,0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.inner-c775 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.avatar_cool_7772 {
    text-align: center;
}

.avatar_cool_7772 .cold_adf9 {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.avatar_cool_7772 .liquid-ea7c {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Trust & Certifications Section - E-E-A-T Trustworthiness */
.frame-0cb4 {
    background: var(--cyber-bg-dark);
    padding: var(--space-3xl) 0;
}

.frame-89bc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.video_5351 {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.video_5351:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
}

.alert-d63a {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.video_5351 h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
    color: var(--neon-cyan);
}

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

.form_a8df {
    background: var(--gradient-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.form_a8df h3 {
    color: var(--neon-cyan);
    margin-bottom: var(--space-sm);
}

.form_a8df > p {
    margin-bottom: var(--space-lg);
}

.north-60ef {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
        justify-content: center;
    }
    
.liquid_4f24 {
    background: rgba(0,240,255,0.1);
    border: 1px solid rgba(0,240,255,0.3);
    color: var(--neon-cyan);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.liquid_4f24:hover {
    background: var(--neon-cyan);
    color: var(--cyber-bg-dark);
}

/* Responsible Gaming Section - E-E-A-T Trustworthiness */
.video_south_381c {
    background: linear-gradient(180deg, var(--cyber-bg-medium) 0%, var(--cyber-bg-dark) 100%);
    padding: var(--space-3xl) 0;
}

.hover_5333 {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hover_5333 h2 {
    color: var(--neon-yellow);
    margin-bottom: var(--space-md);
}

.hover_5333 > p {
    margin-bottom: var(--space-2xl);
    color: var(--text-secondary);
}

.tag-97c4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.texture-advanced-28e5 {
    background: var(--gradient-card);
    border: 1px solid rgba(250,204,21,0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

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

.texture-advanced-28e5 h4 {
    font-size: 1rem;
    color: var(--neon-yellow);
    margin-bottom: var(--space-xs);
}

.texture-advanced-28e5 p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

.last_72d4 {
    background: rgba(250,204,21,0.1);
    border: 2px solid var(--neon-yellow);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    text-align: left;
}

.search-2bea {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-yellow);
    background: var(--cyber-bg-dark);
    border: 3px solid var(--neon-yellow);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.last_72d4 p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .last_72d4 {
        flex-direction: column;
        text-align: center;
    }
    
    .small_d4ef {
        justify-content: center;
    }
}

/* Utility Classes */
.photo_55b4 { text-align: center; }
.logo_black_da32 { margin-bottom: var(--space-lg); }
.sidebar_bright_cf2c { margin-bottom: var(--space-xl); }
.focus-0038 { padding: var(--space-xl) 0; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--glow-cyan);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(0,240,255,0.4);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.disabled-tiny-848b {
    animation: fadeInUp 0.6s ease-out;
}

.mask_static_c8a8 {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .layout_fd08 {
        grid-template-columns: 1fr;
    }
    
    .row_huge_4bc9 {
        grid-template-columns: 1fr;
    }
    
    .tabs-00a3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .tabs-00a3 {
        grid-template-columns: 1fr;
    }
    
    .gallery-dirty-56d0 {
        display: none;
    }
}

/* ============================================
   E-E-A-T Sections Styles - APK Page
   ============================================ */

/* Author Section */
.gallery-3e4a {
    padding: var(--space-2xl) 0;
    background: var(--gradient-card);
}

.footer_purple_f4d7 {
    background: var(--cyber-bg-card);
    border: 1px solid rgba(0,240,255,0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    align-items: center;
}

.preview-1a10 {
    font-size: 4rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.primary_e261 h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.panel-inner-368f {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.sort-a2d4 {
    color: var(--neon-yellow);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.preview-c78e {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.photo_ac2f {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.stone_aec4 {
    background: rgba(0,240,255,0.1);
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: var(--radius-full);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

.photo_easy_f708 {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.notice_9020 {
    background: var(--cyber-bg-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
}

.notice_9020 .top-3515 {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.notice_9020 .image_light_0a01 {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .footer_purple_f4d7 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .photo_ac2f {
        justify-content: center;
    }
    
    .photo_easy_f708 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Guide Steps */
.notification_b36b {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.current-1096 {
    background: var(--cyber-bg-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.current-1096:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.menu_small_172b {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    background: var(--cyber-bg-dark);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grid_e476 h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.grid_e476 p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.huge-6893 {
    background: rgba(250,204,21,0.1);
    border-left: 4px solid var(--neon-yellow);
    padding: var(--space-md);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: var(--space-md);
}

.carousel_pink_50c9 {
    background: var(--cyber-bg-dark);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.carousel_pink_50c9 p {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.carousel_pink_50c9 p:last-child {
    margin-bottom: 0;
}

.summary-8d93 {
    background: var(--cyber-bg-dark);
    border: 1px solid rgba(0,240,255,0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.summary-8d93 .red_6d59 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.summary-8d93 .top-3515 {
    font-weight: 600;
    color: var(--neon-cyan);
}

.list-stone-dc52 {
    background: var(--cyber-bg-dark);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.list-stone-dc52 h4 {
    color: var(--neon-cyan);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.list-stone-dc52 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-stone-dc52 li {
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .current-1096 {
        flex-direction: column;
        text-align: center;
    }
    
    .menu_small_172b {
        margin: 0 auto;
    }
}

/* Requirements Section */
.active-hard-0fe4 {
    padding: var(--space-3xl) 0;
    background: var(--cyber-bg-medium);
}

.fast_81ca {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.info_d939 {
    background: var(--cyber-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(0,240,255,0.15);
}

.info_d939 h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.simple_de2c h3 { color: var(--text-secondary); }
.header_114a h3 { color: var(--neon-yellow); }
.container-768a h3 { color: var(--neon-green); }

.next_08cc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next_08cc li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

.next_08cc li:last-child {
    border-bottom: none;
}

.smooth-7a17 {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .fast_81ca {
        grid-template-columns: 1fr;
    }
}

/* Version History Section */
.small_37b8 {
    padding: var(--space-3xl) 0;
    background: var(--cyber-bg-dark);
}

.picture_5a52 {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.liquid-c1da {
    background: var(--cyber-bg-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
}

.dynamic_fa23 {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(34,197,94,0.2);
}

.mask-hovered-1ab3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyber-bg-dark);
    background: var(--neon-cyan);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    flex-shrink: 0;
}

.dynamic_fa23 .mask-hovered-1ab3 {
    background: var(--neon-green);
}

.fixed_170f h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.texture_1512 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.media_hot_336c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media_hot_336c li {
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .liquid-c1da {
        flex-direction: column;
    }
}

/* Responsible Gaming Section */
.summary_7d75 {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--cyber-bg-medium) 0%, var(--cyber-bg-dark) 100%);
}

.module-6b0f {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.top-3e64 {
    background: var(--cyber-bg-card);
    border: 1px solid rgba(250,204,21,0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.top-3e64:hover {
    border-color: var(--neon-yellow);
    transform: translateY(-5px);
}

.gallery_small_5018 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.top-3e64 h3 {
    font-size: 1.1rem;
    color: var(--neon-yellow);
    margin-bottom: var(--space-sm);
}

.top-3e64 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.input_6e89 {
    background: rgba(250,204,21,0.1);
    border: 2px solid var(--neon-yellow);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.input_6e89 p {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.sort_28b9 {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.bottom_2c53 {
    color: var(--neon-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.bottom_2c53:hover {
    color: var(--neon-cyan);
}

@media (max-width: 992px) {
    .module-6b0f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .module-6b0f {
        grid-template-columns: 1fr;
    }
}

/* Related Section */
.link-right-c8e5 {
    padding: var(--space-3xl) 0;
    background: var(--cyber-bg-medium);
}

.top-3061 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.avatar-60f9 {
    background: var(--cyber-bg-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.avatar-60f9:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.hidden-full-cc17 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.avatar-60f9 h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.avatar-60f9 p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .top-3061 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .top-3061 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Enhanced Stats Summary - More Visual Appeal
   ============================================ */
.shadow-gold-57d7.list-ed3e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(0,240,255,0.05) 0%, rgba(255,0,255,0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,240,255,0.15);
}

.list-ed3e .layout-complex-277e.prev-365f {
    background: linear-gradient(180deg, var(--cyber-bg-card) 0%, rgba(10,14,23,0.9) 100%);
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.list-ed3e .layout-complex-277e.prev-365f::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.list-ed3e .layout-complex-277e.prev-365f:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0,240,255,0.2);
}

.list-ed3e .progress_73d5 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}

.list-ed3e .layout-complex-277e:nth-child(1) .progress_73d5 {
    animation-delay: 0s;
}

.list-ed3e .layout-complex-277e:nth-child(2) .progress_73d5 {
    animation-delay: 0.5s;
}

.list-ed3e .layout-complex-277e:nth-child(3) .progress_73d5 {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.list-ed3e .cold_adf9 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: var(--space-xs);
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.list-ed3e .liquid-ea7c {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.list-ed3e .content-full-c197 {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

@media (max-width: 768px) {
    .shadow-gold-57d7.list-ed3e {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .list-ed3e .cold_adf9 {
        font-size: 2rem;
    }
    
    .list-ed3e .progress_73d5 {
        font-size: 2rem;
    }
}

/* ============================================
   Inline Stats - Compact Style
   ============================================ */
.overlay_2fb6 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--cyber-bg-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.right_f7f2 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.slow-25f3 {
    font-size: 1.2rem;
}

.icon-old-8009 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.link-3eca {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.black-e307 {
    color: var(--text-muted);
    opacity: 0.3;
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .overlay_2fb6 {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .black-e307 {
        display: none;
    }
    
    .right_f7f2 {
    width: 100%;
        justify-content: center;
        padding: var(--space-xs) 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .right_f7f2:last-child {
        border-bottom: none;
    }
}

/* css-noise: f92e */
.phantom-card-v6 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
