/* Cyberpunk Casino Theme - 090bet */
@import url('https://fonts.motion-1075.focus_bronze_5a11/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 */
.paragraph_6dc6 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .paragraph_6dc6 {
        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 */
.text_9c15 {
    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_93ad {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_fbcd:hover .hover_0f24 {
    transform: rotate(180deg);
}

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

.frame_fbcd:hover .wide_035c {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

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

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

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

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

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

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

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

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

.hidden_pressed_fb29.fn-active-14ef {
    background-color: var(--neon-cyan);
    border-color: var(--neon-magenta);
}

.hidden_pressed_fb29.fn-active-14ef span {
    background-color: var(--cyber-bg-dark);
}

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

.hidden_pressed_fb29.fn-active-14ef span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* Hamburger Navigation Menu */
.gallery-fixed-f8c9 {
    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);
}

.gallery-fixed-f8c9.fn-active-14ef {
    max-height: 800px;
}

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

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

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

.glass-8500 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;
}

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

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

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

.glass-8500 a:hover::before {
    left: 100%;
}

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

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

.section-up-c0fa a {
    flex: 1;
    max-width: 180px;
}

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

@media (max-width: 576px) {
    .blue_105c {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .blue_105c .sidebar-motion-7dd2 {
        font-size: 0.75rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .out-73ed {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        max-height: 600px;
        padding: var(--space-sm);
    }
    
    .glass-8500 {
        margin-bottom: var(--space-xs);
    }
    
    .glass-8500 h4 {
        font-size: 0.85rem;
        padding: var(--space-sm) 0;
        margin-bottom: var(--space-xs);
    }
    
    .glass-8500 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);
    }
    
    .section-up-c0fa {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .section-up-c0fa a {
        max-width: none;
        white-space: normal;
        min-height: 48px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .out-73ed {
        max-height: 500px;
        padding: var(--space-xs);
    }
    
    .glass-8500 h4 {
        font-size: 0.8rem;
        margin-bottom: var(--space-xs);
    }
    
    .glass-8500 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-motion-7dd2 {
    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;
}

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

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

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

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

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

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

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

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

.sidebar-green-df00:hover {
    background: var(--neon-magenta);
    color: white;
}

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

.green-ace0:hover {
    background: #16a34a;
    color: white;
}

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

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

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

.info-pink-0acc li:last-child::after {
    display: none;
}

.info-pink-0acc a {
    color: var(--neon-cyan);
}

.info-pink-0acc span {
    color: var(--text-muted);
}

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

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

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

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

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

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

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

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

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

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

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

.link-b7e7 {
    text-align: center;
}

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

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

.slow-39a9 {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hard-a703 {
    position: relative;
}

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

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

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

.popup-9aa1 { top: 10%; left: -10%; animation-delay: 0s; }
.white-c8ee { top: 50%; right: -15%; animation-delay: 1s; }
.gradient_af67 { bottom: 10%; left: 5%; animation-delay: 2s; }

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

@media (max-width: 992px) {
    .down_ca08 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lower_67f9 {
        justify-content: center;
    }
    
    .slow-39a9 {
        justify-content: center;
    }
    
    .hard-a703 {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .top_7872 {
        display: none;
    }
}

@media (max-width: 576px) {
    .tiny-b1d6 {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .lower_67f9 {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .slow-39a9 {
        flex-direction: column;
    }
    
    .slow-39a9 .sidebar-motion-7dd2 {
        width: 100%;
    }
}

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

.fresh-c644.out_a409 {
    background: var(--cyber-bg-medium);
}

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

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

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

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

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

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

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

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

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

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

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

.brown-ab33 {
    position: sticky;
    top: 100px;
}

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

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

.badge-warm-4817:last-child {
    border: none;
}

.wrapper-mini-e5c9 {
    color: var(--neon-green);
    font-size: 1.25rem;
}

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

@media (max-width: 992px) {
    .fixed-2101 {
        grid-template-columns: 1fr;
    }
    
    .brown-ab33 {
        position: static;
    }
}

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

.in-215c.south-123b {
    direction: rtl;
}

.in-215c.south-123b > * {
    direction: ltr;
}

.module-80ad {
    margin: 0;
}

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

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

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

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

@media (max-width: 992px) {
    .in-215c {
        grid-template-columns: 1fr;
    }
    
    .in-215c.south-123b {
        direction: ltr;
    }
}

/* Sports/Games Grid */
.focused-660b, .notice-huge-1283, .hero_old_8638 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.lower-ee3b, .wood-dc3f, .focus-wood-e7d3 {
    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);
}

.lower-ee3b:hover, .wood-dc3f:hover, .focus-wood-e7d3:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.tertiary-7468, .tertiary_0ca1, .tertiary-8550 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.lower-ee3b h4, .wood-dc3f h4, .focus-wood-e7d3 h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.lower-ee3b p, .wood-dc3f p, .focus-wood-e7d3 p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

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

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

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

.steel-6a79 {
    list-style: none;
}

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

.steel-6a79 li:last-child {
    border: none;
}

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

.logo-brown-29b4 {
    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;
}

.logo-brown-29b4.clean-96b9 {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.logo-brown-29b4.clean-96b9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

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

.logo-brown-29b4 h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.logo-brown-29b4 ul {
    list-style: none;
    margin: var(--space-md) 0;
}

.logo-brown-29b4 li {
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

.silver-4b99 {
    text-align: center;
    position: relative;
}

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

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

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

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

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

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

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

.detail-bronze-0c70 {
    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);
}

.detail-bronze-0c70:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
}

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

.complex-18fd {
    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);
}

.banner-3578 {
    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 */
.module_9803 {
    background: var(--cyber-bg-dark);
}

.under-1f1f {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-hovered-99c0 nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.table-hovered-99c0 nav a:hover {
    color: var(--neon-cyan);
}

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

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

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

.background_dark_519e .fast_dd8d {
    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) {
    .title-fd91 {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .table-hovered-99c0 nav {
        align-items: center;
    }
    
    .sort_d3e5 {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

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

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

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

.list-9ee6 {
    font-size: 1rem;
}

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

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

.menu-02cf {
    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);
}

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

.banner-99bb {
    margin-bottom: var(--space-md);
}

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

.menu-02cf 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);
}

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

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

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

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

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

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

.thumbnail-hard-47bb {
    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);
}

.next-76d1 {
    text-align: center;
}

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

.next-76d1 .label-29d2 {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-lower-6284 {
    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;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .block_hard_c444 {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-tiny-5b11 {
        justify-content: center;
    }
}

/* Utility Classes */
.box-solid-efb5 { text-align: center; }
.table-slow-29f1 { margin-bottom: var(--space-lg); }
.container_1085 { margin-bottom: var(--space-xl); }
.frame-full-a5d4 { 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; }
}

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

.green_d689 {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .light-8e40 {
        grid-template-columns: 1fr;
    }
    
    .item-dd6e {
        grid-template-columns: 1fr;
    }
    
    .slider_b009 {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

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

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

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

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

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

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

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

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

.summary-left-a8ac {
    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);
}

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

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

.highlight-5efc .fast_359e {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.highlight-5efc .purple-06bc {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .frame_middle_dc14 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .right_5fdc {
        justify-content: center;
    }
    
    .outer-73aa {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.texture_hovered_5ef8 .paragraph-b471 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.texture_hovered_5ef8 .fast_359e {
    font-weight: 600;
    color: var(--neon-cyan);
}

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

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

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

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

@media (max-width: 768px) {
    .shade-bfb6 {
        flex-direction: column;
        text-align: center;
    }
    
    .selected_ea21 {
        margin: 0 auto;
    }
}

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

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

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

.pink-3f54 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);
}

.light_59db h3 { color: var(--text-secondary); }
.message-light-8c19 h3 { color: var(--neon-yellow); }
.tabs_liquid_a491 h3 { color: var(--neon-green); }

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

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

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

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

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

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

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

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

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

.wood-9f1c {
    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;
}

.overlay-929c .wood-9f1c {
    background: var(--neon-green);
}

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

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

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

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

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

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

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

.shadow-hovered-c6f7 {
    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-hovered-c6f7:hover {
    border-color: var(--neon-yellow);
    transform: translateY(-5px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over-a9a7 .block_c770.medium_1c0d {
    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);
}

.over-a9a7 .block_c770.medium_1c0d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.over-a9a7 .block_c770.medium_1c0d:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0,240,255,0.2);
}

.over-a9a7 .pink-633c {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}

.over-a9a7 .block_c770:nth-child(1) .pink-633c {
    animation-delay: 0s;
}

.over-a9a7 .block_c770:nth-child(2) .pink-633c {
    animation-delay: 0.5s;
}

.over-a9a7 .block_c770:nth-child(3) .pink-633c {
    animation-delay: 1s;
}

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

.over-a9a7 .inner_1cae {
    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;
}

.over-a9a7 .label-29d2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.over-a9a7 .pagination-in-3699 {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

@media (max-width: 768px) {
    .element_80d7.over-a9a7 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .over-a9a7 .inner_1cae {
        font-size: 2rem;
    }
    
    .over-a9a7 .pink-633c {
        font-size: 2rem;
    }
}

/* ============================================
   Inline Stats - Compact Style
   ============================================ */
.link-f6f4 {
    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_hovered_0232 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-inner-6705 {
    font-size: 1.2rem;
}

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

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

.block-solid-3ab4 {
    color: var(--text-muted);
    opacity: 0.3;
    font-size: 1.2rem;
}

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

/* css-noise: 0400 */
.shadow-element-k4 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
