:root {
    /* Основная палитра */
    --bg-dark: #0a0a0c;
    --accent: #ccff00; /* Мягкий неоновый лайм */
    --accent-glow: rgba(204, 255, 0, 0.4);
    --text-main: #e2e2e2;
    --text-muted: #94949b;
    
    /* Эффект стекла */
    --glass-bg: rgba(20, 20, 22, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Типографика */
    --font-sans: 'Inter', sans-serif;
    --font-head: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    overflow-x: hidden;
}

/* ============ ФОНОВЫЕ ЭФФЕКТЫ ============ */
.ambient-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(204,255,0,0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: -2;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ============ GLASSMORPHISM ПАНЕЛИ ============ */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px; /* Мягкие скругления */
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============ HEADER ============ */
.main-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.header-grid { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.logo-icon { color: var(--accent); font-size: 1.6rem; text-shadow: 0 0 15px var(--accent-glow); }

.v-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    background: rgba(204, 255, 0, 0.1);
    color: var(--accent);
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid rgba(204, 255, 0, 0.2);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 15px;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover { color: #fff; }

.system-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 0 0 0 10px rgba(204,255,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(204,255,0,0); }
}

/* ============ HERO СЕКЦИЯ ============ */
.hero { padding: 90px 0; text-align: center; }

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    background: rgba(204, 255, 0, 0.05);
    border: 1px solid rgba(204, 255, 0, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.glow-text {
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.stat-item {
    padding: 25px 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px var(--accent-glow);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ============ КНОПКИ ============ */
.hero-actions { display: flex; justify-content: center; gap: 20px; }

.btn-main {
    background: var(--accent);
    color: #000;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.glow-btn {
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 255, 0, 0.6);
    background: #dbff33;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

/* ============ КАРТОЧКИ КАЗИНО ============ */
.content-section { padding: 70px 0; }

.section-header { margin-bottom: 40px; text-align: center; }
.section-header h2 { font-family: var(--font-head); font-size: 2.2rem; color: #fff; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1rem; }

.casino-card {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.top-tier::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.card-rank {
    position: absolute;
    top: -15px; left: -15px;
    font-family: var(--font-mono);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    z-index: 0;
    pointer-events: none;
}

.card-grid {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    padding: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand-visual { text-align: center; }
.brand-visual img { width: 90px; height: 90px; border-radius: 12px; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px; }
.brand-rating { font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700; color: var(--accent); background: rgba(204, 255, 0, 0.1); padding: 4px 8px; border-radius: 6px; }

.brand-info h3 { font-family: var(--font-head); font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
.tech-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
.tag { font-family: var(--font-mono); font-size: 0.65rem; padding: 4px 10px; border-radius: 20px; background: rgba(255,255,255,0.05); color: #ccc; border: 1px solid rgba(255,255,255,0.1); }
.glow-tag { border-color: var(--accent); color: var(--accent); background: rgba(204, 255, 0, 0.05); }

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

.brand-bonus {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.1);
    text-align: center;
    min-width: 200px;
}
.bonus-title { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 1px; }
.bonus-amount { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.bonus-wager { font-size: 0.8rem; color: var(--accent); }

.brand-action { display: flex; flex-direction: column; gap: 15px; min-width: 150px; text-align: center; }
.brand-action .btn-main { width: 100%; padding: 14px 20px; font-size: 0.9rem; }
.link-review { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.link-review:hover { color: #fff; }

/* ============ СТАТЬИ И ТЕКСТЫ ============ */
.article-container { padding: 50px; }
.article-container h2 { font-family: var(--font-head); font-size: 2rem; color: #fff; margin: 40px 0 20px; }
.article-container h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--accent); margin: 35px 0 15px; }
.article-container p { margin-bottom: 20px; font-size: 1.05rem; }

.author-tag { display: flex; align-items: center; gap: 15px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 30px; }
.author-tag .avatar { width: 50px; height: 50px; background: var(--accent); color: #000; font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; }
.author-tag strong { display: block; color: #fff; font-size: 1.1rem; }
.author-tag span { font-size: 0.85rem; color: var(--text-muted); }

.highlight-box { background: rgba(0,0,0,0.3); padding: 25px; border-radius: 12px; margin: 30px 0; border-left: 4px solid var(--accent); }
.warn-box { border-left-color: #ff3366; background: rgba(255, 51, 102, 0.05); }
.warn-box h4 { color: #ff3366; font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 10px; }

/* ============ ТАБЛИЦА ============ */
.table-wrapper { padding: 30px; overflow-x: auto; }
.cyber-table { display: flex; flex-direction: column; min-width: 700px; }
.t-row { display: grid; grid-template-columns: 1fr 1.5fr 1.5fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.t-row:last-child { border-bottom: none; }
.t-head { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.font-bold { font-weight: 600; color: #fff; }
.accent-text { color: var(--accent); font-weight: bold; }

/* ============ FAQ ============ */
.faq-accordion { display: flex; flex-direction: column; gap: 15px; }
details { padding: 25px; cursor: pointer; transition: all 0.3s; }
details[open] { border-color: rgba(204, 255, 0, 0.3); background: rgba(204, 255, 0, 0.02); }
summary { font-family: var(--font-head); font-size: 1.2rem; color: #fff; font-weight: 700; list-style: none; outline: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--accent); font-size: 1.5rem; transition: transform 0.3s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-body { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }

/* ============ FOOTER ============ */
.main-footer { margin-top: 80px; padding: 60px 0 20px; background: #050506; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 15px; max-width: 300px; }
.footer-links h4 { font-family: var(--font-mono); color: #fff; margin-bottom: 20px; font-size: 0.9rem; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-warning { padding: 25px; display: flex; gap: 20px; align-items: flex-start; }
.age { background: #fff; color: #000; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; padding: 10px 15px; border-radius: 8px; line-height: 1; }
.footer-warning p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; font-family: var(--font-mono); font-size: 0.75rem; color: #666; }
.text-center { text-align: center; }

/* ============ АДАПТИВНОСТЬ ============ */
@media (max-width: 1024px) {
    .card-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .tech-tags { justify-content: center; }
    .brand-visual img { margin: 0 auto 10px; }
    .brand-bonus { width: 100%; }
}

@media (max-width: 768px) {
    .hero-stats { flex-direction: column; }
    .glow-text { font-size: 3rem; }
    .footer-layout { grid-template-columns: 1fr; text-align: center; }
    .footer-warning { flex-direction: column; align-items: center; text-align: center; }
    nav { display: none; }
    .article-container { padding: 30px 20px; }
}
/* ============ LIVE TICKER ============ */
.live-ticker {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    white-space: nowrap;
    position: relative;
    z-index: 99;
}

.ticker-track {
    display: inline-block;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    color: var(--text-muted);
    margin-right: 50px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Эффект сканирующей полосы */
.tech-card::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    opacity: 0.1;
    animation: scan-move 4s infinite linear;
    pointer-events: none;
}

@keyframes scan-move {
    0% { top: -100%; }
    100% { top: 200%; }
}

/* Статус-бейджи с миганием */
.status-node {
    font-size: 0.65rem;
    color: var(--accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-node::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1s infinite;
}
.glitch-text:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}
.network-status {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-left: 2px solid var(--accent);
    pointer-events: none;
    z-index: 100;
}
h2 {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;
    width: 0;
}

.typewriter-active {
    animation: typing 1.5s steps(30, end) forwards, blink-caret .75s step-end infinite;
    width: 100%;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent) }
}
.winner-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid rgba(204, 255, 0, 0.1);
    font-family: var(--font-mono);
    transition: background 0.3s;
}

.winner-row:hover {
    background: rgba(204, 255, 0, 0.05);
    box-shadow: inset 0 0 15px rgba(204, 255, 0, 0.1);
}

.win-amount {
    color: var(--accent);
    font-weight: bold;
    text-shadow: 0 0 8px var(--accent);
}