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

@media (min-width: 768px) {
    .text_5ace {
        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 */
.smooth-222a {
    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;
}

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

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

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

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

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

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

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

.media-c927 img:hover {
    transform: scale(1.05);
}

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

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

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

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

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

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

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

.card_a63a:hover .alert-bfbd {
    transform: rotate(180deg);
}

.form-left-776a {
    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);
}

.card_a63a:hover .form-left-776a {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.form-left-776a 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);
}

.form-left-776a a:last-child {
    margin-bottom: 0;
}

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

.gradient-78a9 {
    display: flex;
    gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.article_bronze_2f14.fn-active-8538 {
    max-height: 800px;
}

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

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

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

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

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

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

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

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

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

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

.west-93fa a {
    flex: 1;
    max-width: 180px;
}

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

@media (max-width: 576px) {
    .gradient-78a9 {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .gradient-78a9 .column_yellow_da17 {
        font-size: 0.75rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .tertiary_simple_5b66 {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        max-height: 600px;
        padding: var(--space-sm);
    }
    
    .pattern_mini_7abc {
        margin-bottom: var(--space-xs);
    }
    
    .pattern_mini_7abc h4 {
        font-size: 0.85rem;
        padding: var(--space-sm) 0;
        margin-bottom: var(--space-xs);
    }
    
    .pattern_mini_7abc 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);
    }
    
    .west-93fa {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .west-93fa a {
        max-width: none;
        white-space: normal;
        min-height: 48px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-white-11e8 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: -100px;
    left: -100px;
}

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

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

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

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

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

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

.main_cool_aa68 {
    text-align: center;
}

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

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

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

.glass-2c0c {
    position: relative;
}

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

.button-middle-2294 {
    position: absolute;
    inset: 0;
}

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

.inner-e414 { top: 10%; left: -10%; animation-delay: 0s; }
.south_6fa5 { top: 50%; right: -15%; animation-delay: 1s; }
.alert-5a10 { bottom: 10%; left: 5%; animation-delay: 2s; }

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

@media (max-width: 992px) {
    .title-bc03 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .soft-877a {
        justify-content: center;
    }
    
    .primary_hard_4949 {
        justify-content: center;
    }
    
    .glass-2c0c {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .button-middle-2294 {
        display: none;
    }
}

@media (max-width: 576px) {
    .under_838c {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .soft-877a {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .primary_hard_4949 {
        flex-direction: column;
    }
    
    .primary_hard_4949 .column_yellow_da17 {
        width: 100%;
    }
}

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

.slow_d31e.blue_ac39 {
    background: var(--cyber-bg-medium);
}

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

.main-down-652f {
    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;
}

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

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

.highlight-8e5b {
    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);
}

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

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

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

.highlight-8e5b p {
    font-size: 0.95rem;
    margin: 0;
}

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

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

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

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

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

.middle-7312:last-child {
    border: none;
}

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

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

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

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

.message_active_96f1.backdrop-blue-fc59 {
    direction: rtl;
}

.message_active_96f1.backdrop-blue-fc59 > * {
    direction: ltr;
}

.column_b3ba {
    margin: 0;
}

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

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

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

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

@media (max-width: 992px) {
    .message_active_96f1 {
        grid-template-columns: 1fr;
    }
    
    .message_active_96f1.backdrop-blue-fc59 {
        direction: ltr;
    }
}

/* Sports/Games Grid */
.list_83f8, .label-fresh-6fae, .status_7183 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.icon_mini_d533, .component-cf51, .overlay_9681 {
    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);
}

.icon_mini_d533:hover, .component-cf51:hover, .overlay_9681:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.yellow-9dc3, .inner_d6c6, .texture_iron_dab0 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.icon_mini_d533 h4, .component-cf51 h4, .overlay_9681 h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.icon_mini_d533 p, .component-cf51 p, .overlay_9681 p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

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

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

.secondary-lower-35e6 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);
}

.gallery_0155 {
    list-style: none;
}

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

.gallery_0155 li:last-child {
    border: none;
}

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

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

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

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

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

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

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

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

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

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

.surface-80ca {
    text-align: center;
    position: relative;
}

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

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

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

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

.huge-98ec {
    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);
}

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

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

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

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

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

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

.short-aef0 {
    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 */
.wrapper_f23a {
    background: var(--cyber-bg-dark);
}

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

.overlay-red-1399 {
    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);
}

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

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

.overlay-red-1399 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;
}

.overlay-red-1399 summary::-webkit-details-marker {
    display: none;
}

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

.overlay-red-1399[open] summary::after {
    transform: rotate(45deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-fresh-527e {
    display: flex;
    gap: var(--space-sm);
}

.search-fresh-527e .photo_cold_330f {
    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) {
    .secondary_mini_ce3d {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .chip-ef62 nav {
        align-items: center;
    }
    
    .pattern_outer_bf4d {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

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

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

.nav-short-6f72 {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.thumbnail_bright_8321 {
    font-size: 1rem;
}

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

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

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

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

.widget-dynamic-b9cf {
    margin-bottom: var(--space-md);
}

.north-616a {
    font-size: 1.25rem;
    letter-spacing: 2px;
}

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

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

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

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

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

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

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

.description-top-0a75 {
    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);
}

.column_in_104e {
    text-align: center;
}

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

.column_in_104e .icon-gold-d09e {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.filter-lite-3234 {
    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);
}

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

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

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

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

.widget-complex-db11 {
    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;
}

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

.widget-complex-db11 > p {
    margin-bottom: var(--space-lg);
}

.alert-yellow-1e81 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
        justify-content: center;
    }
    
.panel_fast_378f {
    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);
}

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

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

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

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

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

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

.tiny-5ee0 {
    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;
}

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

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

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

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

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

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

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

/* Utility Classes */
.footer_921f { text-align: center; }
.box-6dc5 { margin-bottom: var(--space-lg); }
.wrapper_hot_8aff { margin-bottom: var(--space-xl); }
.glass_882e { 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; }
}

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

.hero_2e0d {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .upper_1213 {
        grid-template-columns: 1fr;
    }
    
    .dark_6ddc {
        grid-template-columns: 1fr;
    }
    
    .outer_ef86 {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

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

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

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

.hot-c6c2 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;
}

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

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

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

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

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

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

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

.paragraph-bottom-8e19 .pattern_0a5f {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.paragraph-bottom-8e19 .tabs_fluid_6167 {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

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

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

.container-middle-ee3f {
    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);
}

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

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

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

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

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

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

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

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

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

.rough-bcba .slider_next_ed4e {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.rough-bcba .pattern_0a5f {
    font-weight: 600;
    color: var(--neon-cyan);
}

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

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

.module-active-c99d ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

@media (max-width: 768px) {
    .container-middle-ee3f {
        flex-direction: column;
        text-align: center;
    }
    
    .tertiary-c8ed {
        margin: 0 auto;
    }
}

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

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

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

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

.aside-ad75 h3 { color: var(--text-secondary); }
.row-cfb1 h3 { color: var(--neon-yellow); }
.primary_motion_d3fd h3 { color: var(--neon-green); }

.panel-pink-0a9c {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.panel-pink-0a9c li:last-child {
    border-bottom: none;
}

.column-west-5e99 {
    color: var(--text-primary);
    font-weight: 600;
}

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

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

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

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

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

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

.media_35f6 .frame-e53c {
    background: var(--neon-green);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-936f:hover {
    color: var(--neon-cyan);
}

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

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

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

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

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

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

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

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

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

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

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

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

.huge_2f8d .tooltip_first_e653.search-fluid-6cee {
    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);
}

.huge_2f8d .tooltip_first_e653.search-fluid-6cee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.huge_2f8d .tooltip_first_e653.search-fluid-6cee:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0,240,255,0.2);
}

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

.huge_2f8d .tooltip_first_e653:nth-child(1) .outline_f84a {
    animation-delay: 0s;
}

.huge_2f8d .tooltip_first_e653:nth-child(2) .outline_f84a {
    animation-delay: 0.5s;
}

.huge_2f8d .tooltip_first_e653:nth-child(3) .outline_f84a {
    animation-delay: 1s;
}

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

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

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

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

@media (max-width: 768px) {
    .aside_pink_ecf7.huge_2f8d {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .huge_2f8d .left_2a8d {
        font-size: 2rem;
    }
    
    .huge_2f8d .outline_f84a {
        font-size: 2rem;
    }
}

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

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

.row_c38e {
    font-size: 1.2rem;
}

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

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

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

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

/* css-noise: d236 */
.shadow-element-w6 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.1;
}
