/* ================= CASINO VIP STYLE (DARK & NEON) ================= */
:root {
    --bg-page: #0b0f19;        /* Глубокий темный фон, как сукно стола в тени */
    --surface: #151c2b;        /* Цвет карточек (чуть светлее фона) */
    --surface-hover: #1c2538;  
    --text-main: #e2e8f0;      /* Светло-серый текст для долгого чтения */
    --text-muted: #94a3b8;     /* Вторичный текст */
    --accent-gold: #ffd700;    /* Классическое казиношное золото */
    --accent-green: #00e676;   /* Неоновый зеленый (выигрыш/плюсы) */
    --accent-red: #ff1744;     /* Неоновый красный (минусы/важное) */
    --btn-gradient: linear-gradient(135deg, #00b853 0%, #008a3e 100%); /* Зеленая кнопка CTA */
    --radius-lg: 16px;
    --radius-md: 12px;
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.2);
    --glow-green: 0 0 20px rgba(0, 230, 118, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', system-ui, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= ХЕДЕР (DARK & GOLD) ================= */
header {
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-gold); /* Золотая линия снизу */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--glow-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.nav-menu { display: flex; list-style: none; align-items: center; }
.nav-menu li { margin-left: 25px; }
.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav-menu a:hover { 
    color: var(--accent-gold); 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hamburger { display: none; background: none; border: none; color: var(--accent-gold); font-size: 28px; cursor: pointer; }

/* ================= HERO (NIGHT CLUB VIBE) ================= */
.hero {
    background-color: #0b0f19;
    background-image: radial-gradient(circle at 50% 0%, #1c2538 0%, #0b0f19 80%);
    color: white;
    padding: 100px 20px 80px; 
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero h1 {
    color: #ffffff;
    font-size: 52px;
    max-width: 900px;
    margin: 0 auto 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.hero h1 span {
    color: var(--accent-gold);
    text-shadow: var(--glow-gold);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ================= КОНТЕНТ СТАТЬИ ================= */
.content-section {
    padding: 50px 0;
}

.content-block {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.content-block h2 { 
    font-size: 30px; 
    margin-top: 50px; 
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,215,0,0.3); 
    display: inline-block;
}
.content-block h3 { font-size: 24px; margin-top: 40px; color: #ffffff; }
.content-block p { margin-bottom: 20px; font-size: 16px; }

/* Списки в тексте */
.content-block ul { margin: 20px 0 20px 30px; }
.content-block li { margin-bottom: 12px; }
.content-block ul li::marker { color: var(--accent-gold); font-size: 1.2em; }

/* ================= ДАТА ОБНОВЛЕНИЯ (NEON BADGE) ================= */
.update-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1); 
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    box-shadow: var(--glow-gold);
}

.update-badge svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: var(--accent-gold); 
}

.update-badge strong {
    margin-left: 5px;
    color: var(--accent-gold); 
}

/* ================= КАРТОЧКИ ТОП-КАЗИНО (NEON GLOW) ================= */
.cols__top {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.top-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.top-card:hover {
    background: var(--surface-hover);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* Золотая карточка ТОП-1 */
.top-card--top {
    background: linear-gradient(145deg, #1c2538 0%, #151c2b 100%);
    border: 2px solid var(--accent-gold);
    position: relative;
    box-shadow: var(--glow-gold);
}

.top-card--top::before {
    content: '🏆 #1 SCELTA DEGLI ESPERTI'; 
    position: absolute;
    top: -16px;
    left: 30px;
    background: var(--accent-gold);
    color: #000; /* Чёрный текст на золотом - классика люкса */
    font-size: 12px;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    text-transform: uppercase;
}

/* Элементы внутри карточки */
.top-card__logo {
    flex: 0 0 160px; 
    background: #ffffff; /* Делаем фон чисто белым для идеальной читаемости */
    border: 2px solid rgba(255, 215, 0, 0.3); /* Легкая золотая рамка вокруг белого блока */
    border-radius: 12px; 
    cursor: pointer;
    padding: 12px; /* Даем больше воздуха внутри белого блока */
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-card__logo img {
    width: 100%; 
    height: auto; 
    border-radius: 4px;
    display: block;
}

.top-card__main-info { flex: 1; }
.top-card__name { font-size: 24px; margin-bottom: 5px; color: #ffffff; text-transform: uppercase; }

.rating { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.3); padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; border: 1px solid rgba(255,215,0,0.2); }
.rating::before { content: "★"; font-size: 18px; color: var(--accent-gold); text-shadow: var(--glow-gold); }
.rating .visually-hidden { font-weight: 800; color: var(--accent-gold); font-size: 15px; display: block; }
.rating__fill { display: none; }

.top-card__link { color: var(--text-muted); font-size: 14px; text-decoration: none; border-bottom: 1px dashed var(--text-muted); transition: color 0.2s;}
.top-card__link:hover { color: var(--accent-gold); border-color: var(--accent-gold); }

.top-card__secondary-info { flex: 1; list-style: none; margin: 0; padding: 0; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 25px; }
.top-card__secondary-info li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #e2e8f0;}
.top-card__secondary-info li::marker { content: none; }
.top-card__secondary-info i { color: var(--accent-gold); font-size: 16px; }

.top-card__payments { flex: 1; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; justify-content: flex-end; }
.top-card__payments li::marker { content: none; }
.top-card__payments li img { width: 50px; height: 30px; object-fit: contain; background: #ffffff; border-radius: 6px; padding: 2px;}

.top-card__btn {
    background: var(--btn-gradient);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--glow-green);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}
.top-card__btn:hover { 
    transform: translateY(-2px) scale(1.05); 
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.4); 
    background: linear-gradient(135deg, #00d25f 0%, #00a34a 100%);
}

/* ================= ПЛЮСЫ И МИНУСЫ (NEON BORDERS) ================= */
.pros-cons-wrapper { display: flex; gap: 30px; margin: 50px 0; }

.pros-box, .cons-box {
    flex: 1;
    background: #111622;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.pros-box { border: 1px solid rgba(0, 230, 118, 0.2); }
.cons-box { border: 1px solid rgba(255, 23, 68, 0.2); }

.pros-box h3, .cons-box h3 { text-align: center; font-size: 24px; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px;}
.pros-box h3 { color: var(--accent-green); text-shadow: var(--glow-green); }
.cons-box h3 { color: var(--accent-red); text-shadow: 0 0 20px rgba(255, 23, 68, 0.3); }

.pros-box p, .cons-box p { text-align: center; color: var(--text-muted); margin-bottom: 30px; }

.pros-list, .cons-list { list-style: none; padding: 0 !important; margin: 0 !important; }
.pros-list li, .cons-list li {
    display: flex; align-items: flex-start; gap: 15px; padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05); color: #e2e8f0; font-weight: 600;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::marker, .cons-list li::marker { content: none; }

.pros-list li i, .cons-list li i { font-size: 20px; margin-top: 2px; }
.pros-list li i { color: var(--accent-green); text-shadow: var(--glow-green); }
.cons-list li i { color: var(--accent-red); text-shadow: 0 0 15px rgba(255, 23, 68, 0.3); }

/* ================= ТАБЛИЦЫ (DARK THEME) ================= */
.content-block table {
    width: 100%; border-collapse: collapse; margin: 40px 0;
    background: #0b0f19; border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.content-block table th, .content-block table td { padding: 18px; text-align: left; }
.content-block table th { background: #1c2538; color: var(--accent-gold) !important; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--accent-gold);}
.content-block table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.content-block table tbody tr:hover { background: #151c2b; }
.content-block table td { color: #e2e8f0; font-size: 15px; }
.content-block table td p, .content-block table td strong { background: transparent !important; margin:0 !important; padding:0 !important; }

/* ================= АВТОР (VIP CARD) ================= */
.author-box-pro {
    display: flex !important; align-items: center !important; gap: 30px !important; text-align: left !important;
    background: #111622 !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important; border-radius: var(--radius-lg) !important;
    padding: 30px !important; margin: 50px 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.author-media-col { flex-shrink: 0 !important; }
.author-media-col img { width: 100px !important; height: 100px !important; border-radius: 50% !important; border: 3px solid var(--accent-gold) !important; box-shadow: var(--glow-gold) !important; object-fit: cover !important;}

.author-text-col h3 { font-size: 22px !important; color: #ffffff !important; margin-bottom: 8px !important; text-transform: uppercase !important; }
.author-text-col p { color: var(--text-muted) !important; font-size: 15px !important; margin: 0 !important; }
.author-email-btn { display: none !important; }

/* ================= FAQ (DARK ACCORDION) ================= */
.faq-section { margin-top: 60px; }
.faq-container { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: #111622; border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(255,215,0,0.3); }
.faq-question {
    width: 100%; text-align: left; padding: 20px 25px; font-size: 18px; font-weight: 700; color: #ffffff;
    background: transparent; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question i { color: var(--accent-gold); transition: transform 0.3s ease; font-size: 20px;}
.faq-item.active { border-color: var(--accent-gold); box-shadow: 0 5px 15px rgba(255,215,0,0.1);}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 25px 25px; color: var(--text-muted); line-height: 1.8; }
.faq-item.active .faq-answer { display: block; }

/* ================= ИЗОБРАЖЕНИЯ ================= */
.content-block img { max-width: 100%; border-radius: 12px; margin: 40px auto; display: block; border: 1px solid rgba(255,255,255,0.1); }

/* ================= ФУТЕР ================= */
footer { background: #06080d; color: var(--text-muted); padding: 60px 20px 30px; font-size: 14px; border-top: 2px solid var(--accent-gold); }
.footer-nav { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 30px;}
.footer-nav a { color: #e2e8f0; text-decoration: none; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 1px;}
.footer-nav a:hover { color: var(--accent-gold); }
.responsible-text { color: var(--accent-green); font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 40px; text-transform: uppercase;}
.footer-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.badge-18 { border: 2px solid #ffffff; border-radius: 50%; padding: 8px 10px; font-weight: 900; font-size: 18px; color: #ffffff; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;}
.badge-gamcare span { background: #5b2c86; color: white; padding: 3px 8px; border-radius: 4px; }
.badge-gambleaware span { color: #ff5722; }

/* ================= АДАПТИВ ДЛЯ МОБИЛЬНЫХ ================= */
@media (max-width: 992px) {
    .top-card { flex-direction: column; align-items: center; text-align: center; padding: 30px 20px; gap: 15px; }
    .top-card--top::before { left: 50%; transform: translateX(-50%); width: max-content;}
    .top-card__logo { flex: none; width: 100%; max-width: 220px; margin: 0 auto; }
    .top-card__secondary-info { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; width: 100%; display: flex; flex-direction: column; align-items: center;}
    .top-card__payments { justify-content: center; width: 100%; margin-top: 10px; }
    .top-card__btn { width: 100%; margin-left: 0; margin-top: 15px; padding: 18px; font-size: 18px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        display: none; position: absolute; top: 62px; left: 0; width: 100%;
        background: #0b0f19; border-bottom: 2px solid var(--accent-gold); padding: 20px 0;
    }
    .nav-menu.active { display: flex; flex-direction: column; }
    .nav-menu li { margin: 15px 0; }
    
    .hero { padding: 60px 15px 50px; }
    .hero h1 { font-size: 36px; }
    
    .content-block { padding: 25px 15px; }
    .pros-cons-wrapper { flex-direction: column; gap: 20px; }
    
    .author-box-pro { flex-direction: column !important; text-align: center !important; }
    
    .content-block table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ================= COOKIE BANNER ================= */
.cookie-micro-banner {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(150%);
    background: #151c2b; color: #e2e8f0; border-radius: 12px; padding: 15px 24px;
    display: flex; align-items: center; gap: 20px; z-index: 99999; box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    width: max-content; max-width: 90%; transition: transform 0.4s ease;
    border: 1px solid rgba(255,215,0,0.3);
}
.cookie-micro-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-content a { color: var(--accent-gold); }
.cookie-btn { background: var(--accent-gold); color: #000; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 900; cursor: pointer; text-transform: uppercase;}

@media (max-width: 600px) {
    .cookie-micro-banner { flex-direction: column; text-align: center; }
    .cookie-btn { width: 100%; }
}

.footer-description { max-width: 980px; margin: 0 auto 30px; text-align: center; color: var(--text-muted); line-height: 1.65; }
.footer-description p { margin: 0 0 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; }
