/* Cyberpunk Casino Theme - 090bet */
@import url('https://fonts.carousel-short-b551.paragraph_full_5b71/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 */
.gas-cb7a {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .gas-cb7a {
        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 */
.lower-2166 {
    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;
}

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

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

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

/* Cyber Header */
.panel_light_d6de {
    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;
}

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

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

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

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

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

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

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

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

/* Desktop Dropdown Navigation */
.item-5d72 {
    position: relative;
}

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

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

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

.item-5d72:hover .gas_824f {
    transform: rotate(180deg);
}

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

.item-5d72:hover .row_34e4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

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

/* JS-assisted open state (mainly for touch devices) */
.item-5d72.left-797d .row_34e4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

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

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

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

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

/* Hamburger Menu Toggle */
.disabled_active_21d6 {
    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;
}

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

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

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

.disabled_active_21d6.fn-active-0973 {
    background-color: var(--neon-cyan);
    border-color: var(--neon-magenta);
}

.disabled_active_21d6.fn-active-0973 span {
    background-color: var(--cyber-bg-dark);
}

.disabled_active_21d6.fn-active-0973 span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.disabled_active_21d6.fn-active-0973 span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.disabled_active_21d6.fn-active-0973 span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hamburger Navigation Menu */
.video-9e2b {
    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);
}

.video-9e2b.fn-active-0973 {
    max-height: 800px;
}

.texture-91ea {
    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);
}

.center_1e3b {
    margin-bottom: var(--space-sm);
}

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

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

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

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

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

.center_1e3b a:hover::before {
    left: 100%;
}

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

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

.rough_3d65 a {
    flex: 1;
    max-width: 180px;
}

@media (max-width: 992px) {
    .link_paper_bf1e {
        display: none;
    }
    
    .disabled_active_21d6 {
        display: flex;
    }

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

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

    .disabled_active_21d6 {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
    }

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

    .popup_mini_8d05 .sidebar-thick-9288 {
        /* 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) {
    .link_paper_bf1e {
        display: flex !important;
    }
    .disabled_active_21d6 {
        display: none !important;
    }
    .video-9e2b {
        display: none !important;
    }
}

/* Mobile: keep hamburger menu collapsed by default; expand only when active */
@media (max-width: 992px) {
    .video-9e2b {
        max-height: 0;
        overflow: hidden;
    }
    .video-9e2b.fn-active-0973 {
        max-height: 800px;
    }
}

/* Mobile actions (cloned from .popup_mini_8d05 into hamburger menu) */
.first-7eb1 {
    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);
}
.first-7eb1 .sidebar-thick-9288 {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-weight: 800;
}

@media (max-width: 576px) {
    .popup_mini_8d05 {
        /* Keep header buttons side-by-side on small screens */
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .popup_mini_8d05 .sidebar-thick-9288 {
        max-width: 48%;
        font-size: 0.72rem;
        padding: 0.55rem 0.65rem;
        letter-spacing: 0.06em;
    }
    
    .texture-91ea {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        max-height: 600px;
        padding: var(--space-sm);
    }
    
    .center_1e3b {
        margin-bottom: var(--space-xs);
    }
    
    .center_1e3b h4 {
        font-size: 0.85rem;
        padding: var(--space-sm) 0;
        margin-bottom: var(--space-xs);
    }
    
    .center_1e3b 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);
    }
    
    .rough_3d65 {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .rough_3d65 a {
        max-width: none;
        white-space: normal;
        min-height: 48px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .texture-91ea {
        max-height: 500px;
        padding: var(--space-xs);
    }
    
    .center_1e3b h4 {
        font-size: 0.8rem;
        margin-bottom: var(--space-xs);
    }
    
    .center_1e3b 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 */
.sidebar-thick-9288 {
    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;
}

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

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

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

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

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

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

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

.form-right-e9e8 {
    background: var(--neon-cyan);
    color: var(--cyber-bg-dark);
}

.form-right-e9e8:hover {
    background: var(--neon-magenta);
    color: white;
}

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

.item-down-f22f:hover {
    background: #16a34a;
    color: white;
}

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

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

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

.banner_35ea li:last-child::after {
    display: none;
}

.banner_35ea a {
    color: var(--neon-cyan);
}

.banner_35ea span {
    color: var(--text-muted);
}

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

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

.backdrop-162f {
    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); }
}

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

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

.panel_de89 {
    width: 300px;
    height: 300px;
    background: var(--neon-magenta);
    bottom: -50px;
    right: -50px;
}

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

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

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

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

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

.liquid_e15c {
    text-align: center;
}

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

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

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

.light-bb80 {
    position: relative;
}

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

.menu-active-2b67 {
    position: absolute;
    inset: 0;
}

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

.soft-c484 { top: 10%; left: -10%; animation-delay: 0s; }
.basic_147b { top: 50%; right: -15%; animation-delay: 1s; }
.list_down_6e36 { bottom: 10%; left: 5%; animation-delay: 2s; }

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

@media (max-width: 992px) {
    .item-57c8 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .steel_6005 {
        justify-content: center;
    }
    
    .mini_671d {
        justify-content: center;
    }
    
    .light-bb80 {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .menu-active-2b67 {
        display: none;
    }
}

@media (max-width: 576px) {
    .image_cada {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .steel_6005 {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .mini_671d {
        flex-direction: column;
    }
    
    .mini_671d .sidebar-thick-9288 {
        width: 100%;
    }
}

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

.dropdown-7c53.thumbnail-dark-cf11 {
    background: var(--cyber-bg-medium);
}

.modal-bright-10a3 {
        text-align: center;
    margin-bottom: var(--space-2xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper_8dea:last-child {
    border: none;
}

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

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

@media (max-width: 992px) {
    .wrapper-gas-c06f {
        grid-template-columns: 1fr;
    }
    
    .red_5ffd {
        position: static;
    }
}

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

.over_ae13.feature-blue-9875 {
    direction: rtl;
}

.over_ae13.feature-blue-9875 > * {
    direction: ltr;
}

.column_ddb8 {
    margin: 0;
}

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

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

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

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

@media (max-width: 992px) {
    .over_ae13 {
        grid-template-columns: 1fr;
    }
    
    .over_ae13.feature-blue-9875 {
        direction: ltr;
    }
}

/* Sports/Games Grid */
.shade-simple-ee07, .pagination-rough-1022, .container_5b3b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.accent-mini-2951, .photo_wood_da12, .paragraph-prev-e9bc {
    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);
}

.accent-mini-2951:hover, .photo_wood_da12:hover, .paragraph-prev-e9bc:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.under_08ca, .gradient_1fa8, .layout_mini_cc85 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.accent-mini-2951 h4, .photo_wood_da12 h4, .paragraph-prev-e9bc h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.accent-mini-2951 p, .photo_wood_da12 p, .paragraph-prev-e9bc p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

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

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

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

.detail-liquid-2ab0 {
    list-style: none;
}

.detail-liquid-2ab0 li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-liquid-2ab0 li:last-child {
    border: none;
}

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

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

.easy-b993.iron-9e9d {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.easy-b993.iron-9e9d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

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

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

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

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

.photo_old_0d27 h3 {
    color: var(--neon-yellow);
}

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

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

.active-8e61 {
    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);
}

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

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

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

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

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

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

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

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

.dirty-2094 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

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

.popup_4013 {
    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 */
.title-first-4075 {
    background: var(--cyber-bg-dark);
}

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

.focus-soft-1ada {
    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);
}

.focus-soft-1ada:hover {
    border-color: rgba(0,240,255,0.3);
}

.focus-soft-1ada[open] {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.focus-soft-1ada 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;
}

.focus-soft-1ada summary::-webkit-details-marker {
    display: none;
}

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

.focus-soft-1ada[open] summary::after {
    transform: rotate(45deg);
}

.paragraph-mini-0540 {
    padding: 0 var(--space-lg) var(--space-lg);
}

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

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

.next-3250 img,
.thumbnail_dark_f7bb img,
img.hot-b614 {
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-cyan);
}

.next-3250 h2 {
    margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.huge-420b nav a:hover {
    color: var(--neon-cyan);
}

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

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

.in-0ef1 {
    display: flex;
    gap: var(--space-sm);
}

.in-0ef1 .hidden-7b99 {
    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) {
    .notice_pink_bb40 {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .huge-420b nav {
        align-items: center;
    }
    
    .white_e813 {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

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

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

.logo-mini-ddd1 {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.dynamic_bcce {
    font-size: 1rem;
}

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

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

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

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

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

.hard-4850 {
    font-size: 1.25rem;
    letter-spacing: 2px;
}

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

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

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

.south-39f5 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.south-39f5 cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
}

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

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

.hot-b244 {
    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_6c4f {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.active_b848 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
        justify-content: center;
    }
    
.rough_9986 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Utility Classes */
.carousel-silver-2fcd { text-align: center; }
.first_1bba { margin-bottom: var(--space-lg); }
.copper_cad0 { margin-bottom: var(--space-xl); }
.column-eea4 { 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; }
}

.cold-1c06 {
    animation: fadeInUp 0.6s ease-out;
}

.caption_146f {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-5c81 {
        grid-template-columns: 1fr;
    }
    
    .background_hard_d0b6 {
        grid-template-columns: 1fr;
    }
    
    .pro_d006 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .pro_d006 {
        grid-template-columns: 1fr;
    }
    
    .current_f90a {
        display: none;
    }
}

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

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

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

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

.accent-basic-68b8 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;
}

.form-paper-efc4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

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

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

.texture-purple-58a1 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.menu-copper-ea60 {
    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);
}

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

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

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

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

@media (max-width: 992px) {
    .block-fbb1 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .texture-purple-58a1 {
        justify-content: center;
    }
    
    .gradient_hovered_7880 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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

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

.active-8e61 {
    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;
}

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

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

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

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

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

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

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

.white-6e38 .silver_f797 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.white-6e38 .description_blue_b6e5 {
    font-weight: 600;
    color: var(--neon-cyan);
}

.fast-9617 {
    background: var(--cyber-bg-dark);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

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

.fast-9617 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

@media (max-width: 768px) {
    .feature_wood_2ad5 {
        flex-direction: column;
        text-align: center;
    }
    
    .active-8e61 {
        margin: 0 auto;
    }
}

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

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

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

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

.thumbnail_liquid_b663 h3 { color: var(--text-secondary); }
.panel_copper_1dda h3 { color: var(--neon-yellow); }
.active-upper-f859 h3 { color: var(--neon-green); }

.right-17e5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.right-17e5 li:last-child {
    border-bottom: none;
}

.bronze-1859 {
    color: var(--text-primary);
    font-weight: 600;
}

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

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

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

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

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

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

.banner_98d5 .component-a59f {
    background: var(--neon-green);
}

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

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

.primary-tiny-bdbb {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

.hard-4aef {
    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;
}

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

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

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

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

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

@media (max-width: 576px) {
    .tag-2e6a {
        grid-template-columns: 1fr;
    }
}

/* Related Section */
.component-8f0b {
    padding: var(--space-3xl) 0;
    background: var(--cyber-bg-medium);
}

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .component-inner-c7f0 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Enhanced Stats Summary - More Visual Appeal
   ============================================ */
.thumbnail-5ca1.detail-c730 {
    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);
}

.detail-c730 .progress_up_9dce.narrow-a89e {
    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);
}

.detail-c730 .progress_up_9dce.narrow-a89e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.detail-c730 .progress_up_9dce.narrow-a89e:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0,240,255,0.2);
}

.detail-c730 .dirty-79b9 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}

.detail-c730 .progress_up_9dce:nth-child(1) .dirty-79b9 {
    animation-delay: 0s;
}

.detail-c730 .progress_up_9dce:nth-child(2) .dirty-79b9 {
    animation-delay: 0.5s;
}

.detail-c730 .progress_up_9dce:nth-child(3) .dirty-79b9 {
    animation-delay: 1s;
}

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

.detail-c730 .menu_top_a9b2 {
    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;
}

.detail-c730 .component_upper_fb82 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.detail-c730 .surface_7560 {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

@media (max-width: 768px) {
    .thumbnail-5ca1.detail-c730 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .detail-c730 .menu_top_a9b2 {
        font-size: 2rem;
    }
    
    .detail-c730 .dirty-79b9 {
        font-size: 2rem;
    }
}

/* ============================================
   Inline Stats - Compact Style
   ============================================ */
.hard-949b {
    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);
}

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

.chip-south-0208 {
    font-size: 1.2rem;
}

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

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

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

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

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