/* Cyberpunk Casino Theme - 090bet */
@import url('https://fonts.simple-77ee.breadcrumb-hard-938d/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-d4f0 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .purple-d4f0 {
        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 */
.dark-8dd0 {
    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;
}

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

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

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

/* Cyber Header */
.hot-1fca {
    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;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

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

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

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

.banner-wide-4d5a {
    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;
}

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

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

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

/* Desktop Dropdown Navigation */
.yellow-7c53 {
    position: relative;
}

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

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

.yellow-7c53:hover .module_fluid_84cc {
    transform: rotate(180deg);
}

.fresh_2063 {
    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;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--glow-cyan), var(--shadow-card);
}

.yellow-7c53:hover .fresh_2063 {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

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

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

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

.pink-6ff7 {
    display: flex;
    gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

/* Hamburger Navigation Menu */
.pagination-old-9d52 {
    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);
}

.pagination-old-9d52.fn-active-de96 {
    max-height: 800px;
}

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

.middle-8b0c {
    margin-bottom: var(--space-sm);
}

.middle-8b0c 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);
}

.middle-8b0c 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;
}

.middle-8b0c 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);
}

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

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

.middle-8b0c a:hover::before {
    left: 100%;
}

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

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

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

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

@media (max-width: 576px) {
    .pink-6ff7 {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .pink-6ff7 .box-8528 {
        font-size: 0.75rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .border_ff4f {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        max-height: 600px;
        padding: var(--space-sm);
    }
    
    .middle-8b0c {
        margin-bottom: var(--space-xs);
    }
    
    .middle-8b0c h4 {
        font-size: 0.85rem;
        padding: var(--space-sm) 0;
        margin-bottom: var(--space-xs);
    }
    
    .middle-8b0c 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);
    }
    
    .outline_964b {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .outline_964b a {
        max-width: none;
        white-space: normal;
        min-height: 48px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .border_ff4f {
        max-height: 500px;
        padding: var(--space-xs);
    }
    
    .middle-8b0c h4 {
        font-size: 0.8rem;
        margin-bottom: var(--space-xs);
    }
    
    .middle-8b0c 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 */
.box-8528 {
    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;
}

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

.description-40ae: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);
}

.description-40ae::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;
}

.description-40ae:hover::before {
    left: 100%;
}

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

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

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

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

.hero_lower_90bc:hover {
    background: var(--neon-magenta);
    color: white;
}

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

.caption-ac11:hover {
    background: #16a34a;
    color: white;
}

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

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

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

.heading-focused-4dc2 li:last-child::after {
    display: none;
}

.heading-focused-4dc2 a {
    color: var(--neon-cyan);
}

.heading-focused-4dc2 span {
    color: var(--text-muted);
}

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

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

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

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

.widget-dynamic-43a6 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: -100px;
    left: -100px;
}

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

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

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

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

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

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

.down_4f8a {
    text-align: center;
}

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

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

.description-inner-6c12 {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.large_3f15 {
    position: relative;
}

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

.north-28b1 {
    position: absolute;
    inset: 0;
}

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

.section-solid-eb4d { top: 10%; left: -10%; animation-delay: 0s; }
.element_easy_6366 { top: 50%; right: -15%; animation-delay: 1s; }
.heading-2126 { bottom: 10%; left: 5%; animation-delay: 2s; }

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

@media (max-width: 992px) {
    .mask_easy_dddc {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .element_in_b156 {
        justify-content: center;
    }
    
    .description-inner-6c12 {
        justify-content: center;
    }
    
    .large_3f15 {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .north-28b1 {
        display: none;
    }
}

@media (max-width: 576px) {
    .aside-upper-2aea {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .element_in_b156 {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .description-inner-6c12 {
        flex-direction: column;
    }
    
    .description-inner-6c12 .box-8528 {
        width: 100%;
    }
}

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

.avatar_down_d3ce.solid_c8fc {
    background: var(--cyber-bg-medium);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-f2e7:last-child {
    border: none;
}

.heading-solid-b134 {
    color: var(--neon-green);
    font-size: 1.25rem;
}

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

@media (max-width: 992px) {
    .dropdown_c196 {
        grid-template-columns: 1fr;
    }
    
    .carousel_b716 {
        position: static;
    }
}

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

.section_thick_268b.pattern-right-54c2 {
    direction: rtl;
}

.section_thick_268b.pattern-right-54c2 > * {
    direction: ltr;
}

.thick_de1d {
    margin: 0;
}

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

.footer-advanced-203e: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;
}

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

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

@media (max-width: 992px) {
    .section_thick_268b {
        grid-template-columns: 1fr;
    }
    
    .section_thick_268b.pattern-right-54c2 {
        direction: ltr;
    }
}

/* Sports/Games Grid */
.sidebar_pink_9020, .plasma-0a95, .outline-1b70 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.easy-616b, .texture_dirty_ae57, .text_1705 {
    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);
}

.easy-616b:hover, .texture_dirty_ae57:hover, .text_1705:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.column_glass_c91c, .tiny-cb6c, .full_ad8c {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.easy-616b h4, .texture_dirty_ae57 h4, .text_1705 h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.easy-616b p, .texture_dirty_ae57 p, .text_1705 p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

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

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

.column-428d 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);
}

.white-88db {
    list-style: none;
}

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

.white-88db li:last-child {
    border: none;
}

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

.mask-new-f1c8 {
    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;
}

.mask-new-f1c8.list_e27d {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.mask-new-f1c8.list_e27d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.dropdown-thick-0aff {
    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);
}

.mask-new-f1c8 h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.mask-new-f1c8 ul {
    list-style: none;
    margin: var(--space-md) 0;
}

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

.shadow-tall-0a12 h3 {
    color: var(--neon-yellow);
}

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

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

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

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

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

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

.footer-up-bbea {
    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);
}

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

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

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

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

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

.current-553f {
    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);
}

.heading-simple-97e5 {
    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 */
.brown_f6c2 {
    background: var(--cyber-bg-dark);
}

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

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

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

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

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

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

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

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

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

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

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

.filter_warm_c5a1 img {
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-cyan);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.message_orange_6f48 .last-ae3c {
    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) {
    .clean-bee4 {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .gallery_130a nav {
        align-items: center;
    }
    
    .item_78c7 {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

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

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

.prev-5cfd {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.active-ad17 {
    font-size: 1rem;
}

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

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

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

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

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

.module-42e4 {
    font-size: 1.25rem;
    letter-spacing: 2px;
}

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

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

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

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

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

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

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

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

.mask-brown-f138 {
    text-align: center;
}

.mask-brown-f138 .notification-purple-ffa5 {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.mask-brown-f138 .selected_ce2f {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.hover-copper-61ea {
    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);
}

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

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

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

.hover-copper-61ea p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-muted);
}

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

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

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

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

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

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

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

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

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

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

.nav-gold-1306 {
    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;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .selected-4727 {
        flex-direction: column;
        text-align: center;
    }
    
    .new-4dd6 {
        justify-content: center;
    }
}

/* Utility Classes */
.plasma_8c3b { text-align: center; }
.video_action_f811 { margin-bottom: var(--space-lg); }
.out_3dd8 { margin-bottom: var(--space-xl); }
.description-0538 { 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; }
}

.right_2255 {
    animation: fadeInUp 0.6s ease-out;
}

.gradient-1d4c {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .search_3f59 {
        grid-template-columns: 1fr;
    }
    
    .avatar-plasma-cc18 {
        grid-template-columns: 1fr;
    }
    
    .row-c5d8 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .row-c5d8 {
        grid-template-columns: 1fr;
    }
    
    .focus-5c4e {
        display: none;
    }
}

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

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

.element-light-f38c {
    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;
}

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

.red-45a8 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;
}

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

.column-silver-4ace {
    color: var(--neon-yellow);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

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

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

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

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

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

.component-3ec8 .pressed_f7d5 {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.component-3ec8 .modal_6d28 {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .element-light-f38c {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .widget_lite_5f2b {
        justify-content: center;
    }
    
    .simple-e6d9 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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

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

.out-21ac {
    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;
}

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

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

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

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

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

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

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

.focus-4978 .tertiary_orange_f2d4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.focus-4978 .pressed_f7d5 {
    font-weight: 600;
    color: var(--neon-cyan);
}

.blue-4c71 {
    background: var(--cyber-bg-dark);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

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

.blue-4c71 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

@media (max-width: 768px) {
    .down_0f86 {
        flex-direction: column;
        text-align: center;
    }
    
    .out-21ac {
        margin: 0 auto;
    }
}

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

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

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

.list-purple-2458 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);
}

.dropdown-prev-801b h3 { color: var(--text-secondary); }
.picture-6e69 h3 { color: var(--neon-yellow); }
.block_clean_8891 h3 { color: var(--neon-green); }

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

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

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

.column-dark-ddab {
    color: var(--text-primary);
    font-weight: 600;
}

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

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

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

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

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

.last-4e13 {
    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;
}

.tag-in-c45b .last-4e13 {
    background: var(--neon-green);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   Enhanced Stats Summary - More Visual Appeal
   ============================================ */
.modal_f3cc.badge_brown_303d {
    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);
}

.badge_brown_303d .primary-silver-32c1.grid_2e4a {
    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);
}

.badge_brown_303d .primary-silver-32c1.grid_2e4a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.badge_brown_303d .primary-silver-32c1.grid_2e4a:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0,240,255,0.2);
}

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

.badge_brown_303d .primary-silver-32c1:nth-child(1) .prev-cd75 {
    animation-delay: 0s;
}

.badge_brown_303d .primary-silver-32c1:nth-child(2) .prev-cd75 {
    animation-delay: 0.5s;
}

.badge_brown_303d .primary-silver-32c1:nth-child(3) .prev-cd75 {
    animation-delay: 1s;
}

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

.badge_brown_303d .notification-purple-ffa5 {
    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;
}

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

.badge_brown_303d .sort_south_8199 {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

@media (max-width: 768px) {
    .modal_f3cc.badge_brown_303d {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .badge_brown_303d .notification-purple-ffa5 {
        font-size: 2rem;
    }
    
    .badge_brown_303d .prev-cd75 {
        font-size: 2rem;
    }
}

/* ============================================
   Inline Stats - Compact Style
   ============================================ */
.card-17ca {
    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);
}

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

.grid_a9de {
    font-size: 1.2rem;
}

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

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

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

@media (max-width: 576px) {
    .card-17ca {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .caption-fluid-a0e5 {
        display: none;
    }
    
    .panel-7eec {
    width: 100%;
        justify-content: center;
        padding: var(--space-xs) 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .panel-7eec:last-child {
        border-bottom: none;
    }
}

/* css-noise: cac2 */
.ghost-box-s2 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.2;
}
