/* ---------- theme variables (place at top of your main CSS file) ---------- */

/* Google font via CSS (если нельзя редактировать <head>) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
  /* LIGHT THEME (defaults) */
  --bg-primary: #F5F5F5;
  --bg-card: #FFFFFF;
  --text-primary: #222222;
  --muted: #6B7280;
  --border-color: #E0E0E0;
  --accent-color: #00CFE3; /* бирюзовый акцент */
  --accent-variant: rgba(0,207,227,0.12);
  --shadow: 0 6px 18px rgba(24,28,32,0.06);
  --grid-line: rgba(0,0,0,0.03);
}

/* DARK THEME (override variables when data-theme="dark" on <html>) */
html[data-theme="dark"] {
  --bg-primary: #121212;
  --bg-card: #1E1E1E;
  --text-primary: #F5F5F5;
  --muted: #B7B7B7;
  --border-color: #333333;
  /* --accent-color остаётся тем же для консистентности */
  --accent-variant: rgba(0,207,227,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.6);
  --grid-line: rgba(255,255,255,0.03);
}

/* Плавные переходы для ключевых свойств */
*,
*::before,
*::after {
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

/* Базовые применения переменных — примеры */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  color: var(--text-primary);
}
a, .accent {
  color: var(--accent-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --black-bg: #000000;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --card-hover: #262626;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark-gray: #666666;
    --border: #333333;
    --border-light: #404040;
    --gray-accent: #8c8c8c;
    --gray-light: #b3b3b3;
    --star-color: #ffc107;
    --star-empty: #444444;
    --primary-color: #8c8c8c;
    --secondary-color: #4a4a4a;
}

:root[data-theme="light"] {
    --black-bg: #ffffff;
    --dark-bg: #f5f5f5;
    --card-bg: #f9f9f9;
    --card-hover: #eeeeee;
    --text-light: #000000;
    --text-gray: #666666;
    --text-dark-gray: #888888;
    --border: #dddddd;
    --border-light: #cccccc;
    --gray-accent: #666666;
    --gray-light: #444444;
    --star-color: #ffa000;
    --star-empty: #dddddd;
    --primary-color: #666666;
    --secondary-color: #888888;
}

body {
    background: var(--black-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.3s ease;
    min-height: 100vh;
    font-size: 14px;
}

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

/* Header */
.header {
    background: var(--black-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    text-decoration: none;
    cursor: pointer;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-light);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 3px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}





.theme-btn.active {
    background: var(--gray-accent);
    color: var(--black-bg);
    border-color: var(--gray-accent);
}

.theme-btn:hover {
    border-color: var(--gray-accent);
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    background: var(--black-bg);
    position: relative;
    transition: all 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--card-bg) 0%, var(--black-bg) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--gray-light);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.hero-accent {
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.hero-brand {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.hero-subtitle {
    color: var(--text-gray);
    margin-top: 5px;
    line-height: 1.5;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Platforms Section */
.platforms {
    padding: 40px 0 60px;
    background: var(--black-bg);
    transition: all 0.3s ease;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-light);
    transition: color 0.3s ease;
    text-align: center;
}

.section-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.platform-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 18px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    background: var(--card-hover);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.platform-badge {
    background: var(--dark-bg);
    color: var(--gray-light);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.platform-logo {
    width: 90px;
    height: 30px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: bold;
    font-size: 11px;
    transition: all 0.3s ease;
}

/* Логотипы букмекеров */
.winline-logo { background: #ff6b00; color: white; }
.pari-logo { background: #00a2ff; color: white; }
.mellbet-logo { background: #ff0000; color: white; }
.betboom-logo { background: #ffcc00; color: black; }
.betsiti-logo { background: #00cc66; color: white; }
.fonbet-logo { background: #0066cc; color: white; }

/* Star Rating System */
.star-rating {
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 12px;
    height: 12px;
    position: relative;
}

.star-empty {
    color: var(--star-empty);
}

.star-filled {
    color: var(--star-color);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.platform-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.platform-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 13px;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.platform-features {
    list-style: none;
    margin-bottom: 12px;
}

.platform-features li {
    color: var(--text-gray);
    margin-bottom: 4px;
    padding-left: 15px;
    position: relative;
    font-size: 12px;
    transition: color 0.3s ease;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gray-accent);
    transition: color 0.3s ease;
}

.platform-bonus {
    background: var(--dark-bg);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 10px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    text-align: center;
    color: inherit;

    margin-top: auto;   /* ВАЖНО: прижимаем кнопку к низу карточки */
    margin-bottom: 5px;
}

.platform-bonus:hover {
    border-color: var(--gray-accent);
    background: var(--card-hover);
    transform: translateY(-2px);
}

.bonus-text {
    color: var(--gray-light);
    font-weight: bold;
    font-size: 13px;
    transition: color 0.3s ease;
    padding: 8px 10px;
}

.bonus-text::after {
    content: '' !important;
}

/* Moving Banner */
.moving-banner {
    background: var(--card-bg);
    padding: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.banner-track {
    display: flex;
    animation: moveBanner 30s linear infinite;
    white-space: nowrap;
}

.banner-item {
    display: flex;
    align-items: center;
    padding: 0 25px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.banner-rating {
    background: var(--gray-accent);
    color: var(--black-bg);
    padding: 3px 6px;
    border-radius: 15px;
    margin-right: 12px;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.3s ease;
}

@keyframes moveBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.moving-banner:hover .banner-track {
    animation-play-state: paused;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.responsible-gaming {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
    align-items: center;
}

.responsible-gaming a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.responsible-gaming a:hover {
    background: var(--card-hover);
    border-color: var(--gray-accent);
    color: var(--text-light);
}

.responsible-gaming img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-dark-gray);
}

.copyright .disclaimer {
    font-size: 11px;
    margin-top: 5px;
    color: var(--text-gray);
}

/* Стили для выделенной бонусной ссылки */
.bonus-highlight {
    color: #ffffff !important;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    font-size: 13px;
}

.bonus-highlight:hover {
    color: #ff6b00 !important;
    text-decoration: none;
}

/* Для светлой темы */
:root[data-theme="light"] .bonus-highlight {
    color: #000000 !important;
}

:root[data-theme="light"] .bonus-highlight:hover {
    color: #ff6b00 !important;
}

/* Стили для ссылки "Читать полный обзор" */
.review-link-container {
    margin-top: 5px;
    text-align: center;
    padding-bottom: 5px;
}

.full-review-link {
    color: var(--text-light) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.full-review-link:hover {
    color: #ff6b00 !important;
    text-decoration: underline;
}

/* Для светлой темы */
:root[data-theme="light"] .full-review-link {
    color: #000000 !important;
}

:root[data-theme="light"] .full-review-link:hover {
    color: #ff6b00 !important;
}

/* Стили для секции рейтинга */
.rating-section {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-top: 3px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 3px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        padding: 16px;
        min-height: 340px;
    }

    .banner-item {
        font-size: 13px;
        padding: 0 20px;
    }

    .bonus-text {
        padding: 7px 8px;
        font-size: 12px;
    }

    .footer-links {
        gap: 15px;
    }

    .responsible-gaming {
        gap: 10px;
        flex-direction: column;
    }

    .header-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .header-controls {
        flex-direction: column;
        gap: 8px;
    }

    .platform-logo {
        width: 90px;
        height: 30px;
        font-size: 11px;
    }

    .platform-bonus {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        margin-top: 2px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .star {
        width: 10px;
        height: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .platform-card {
        padding: 14px;
        min-height: 330px;
    }

    .bonus-text {
        padding: 6px 7px;
        font-size: 11px;
    }

    .platform-bonus {
        padding: 8px;
    }
}
/* Контактная страница */
.contact-main {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: var(--text-secondary);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.contact-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-secondary);
    flex-grow: 1;
}

.contact-email-link {
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 2px solid transparent;
}

.contact-email-link:hover {
    background: var(--button-hover);
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.contact-card-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 10px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
    width: 100%;
}

.contact-info-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.contact-info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-faq {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-faq h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-disclaimer {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-disclaimer h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-disclaimer p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.contact-reference {
    text-align: center;
    margin-top: 15px;
}

.contact-reference a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-reference a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-faq, .contact-disclaimer {
        padding: 25px;
    }
    
    .contact-faq h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-faq, .contact-disclaimer {
        padding: 20px;
    }
}

.theme-toggle span {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}

html[data-theme="light"] .icon-sun { opacity: 1; }
html[data-theme="dark"]  .icon-moon { opacity: 1; }
/* theme switcher container */


/* active theme button highlight */
.theme-btn.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Иконки внутри переключателя */
.toggle-icon {
    font-size: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.toggle-icon.sun {
    left: 7px;
}

.toggle-icon.moon {
    right: 7px;
}

/* --- DARK THEME --- */
html[data-theme="dark"] .toggle-thumb {
    transform: translateX(26px);
    background: var(--gray-light);
}

html[data-theme="dark"] .toggle-icon.moon {
    opacity: 1;
}

html[data-theme="dark"] .toggle-icon.sun {
    opacity: 0.3;
}

/* --- LIGHT THEME --- */
html[data-theme="light"] .toggle-icon.sun {
    opacity: 1;
}

html[data-theme="light"] .toggle-icon.moon {
    opacity: 0.3;
}
/* -------------------------------
   Modern Theme Toggle Switch (replace old toggle-related rules)
--------------------------------- */


/* Dark theme: thumb to right, moon visible */
html[data-theme="dark"] .toggle-thumb {
    transform: translateX(24px);
    background: var(--gray-light);
}
html[data-theme="dark"] .toggle-icon.moon { opacity: 1; transform: translateY(-50%) scale(1); }
html[data-theme="dark"] .toggle-icon.sun  { opacity: 0.25; }

/* Light theme: thumb left, sun visible */
html[data-theme="light"] .toggle-thumb {
    transform: translateX(0);
    background: var(--gray-accent);
}
html[data-theme="light"] .toggle-icon.sun  { opacity: 1; transform: translateY(-50%) scale(1); }
html[data-theme="light"] .toggle-icon.moon { opacity: 0.25; }

/* Ensure header layout */
.header-content 



/* LIGHT THEME */
html[data-theme="light"] .toggle-thumb {
    transform: translateX(0);
}
html[data-theme="light"] .toggle-icon.sun {
    opacity: 1;
}
html[data-theme="light"] .toggle-icon.moon {
    opacity: 0.3;
}

/* DARK THEME */
html[data-theme="dark"] .toggle-thumb {
    transform: translateX(24px);
}
html[data-theme="dark"] .toggle-icon.sun {
    opacity: 0.3;
}
html[data-theme="dark"] .toggle-icon.moon {
    opacity: 1;
}
/* ------------------------------
   NEW THEME TOGGLE (FIXED)
------------------------------- */


/* ============================
   SIMPLE TWO-CIRCLE TOGGLE
============================ */

.circle-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
}

.circle-toggle .circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.25s ease;
}

/* черный круг */
.dark-circle {
    background: #000;
    border-color: #000;
}

/* белый круг */
.light-circle {
    background: #fff;
    border-color: #fff;
}

/* выделение активной темы */
.circle.active {
    transform: scale(1.15);
}

/* светлая тема = белый круг активный */
html[data-theme="light"] .dark-circle {
    opacity: 0.4;
}

html[data-theme="light"] .light-circle {
    opacity: 1;
}

/* тёмная тема = чёрный круг активный */
html[data-theme="dark"] .light-circle {
    opacity: 0.4;
}

html[data-theme="dark"] .dark-circle {
    opacity: 1;
}

/* ============================
   SIMPLE TWO-CIRCLE TOGGLE (FINAL)
============================ */

.circle-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
}

.circle-toggle .circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* левый кружок — тёмная тема */
.dark-circle {
    background: #000;
}

/* правый кружок — светлая тема */
.light-circle {
    background: #fff;
    border: 2px solid #fff;
}

/* активный кружок увеличивается */
.circle.active {
    transform: scale(1.25);
}

/* состояние темы */
html[data-theme="dark"] .dark-circle { opacity: 1; }
html[data-theme="dark"] .light-circle { opacity: 0.4; }

html[data-theme="light"] .dark-circle { opacity: 0.4; }
html[data-theme="light"] .light-circle { opacity: 1; }

/* Зеленое свечение ТОЛЬКО для Лиги Ставок */
#freeBetLiga:hover {
    color: #00ff6a !important;       /* ярко-зелёный текст */
    text-shadow: 0 0 10px #00ff6a;   /* зелёное свечение */
    transition: 0.3s;
}
/* Зеленая подсветка названия Лиги Ставок */
.liga-title-link:hover {
    color: #00ff6a !important;
    text-shadow: 0 0 10px #00ff6a;
    transition: 0.3s;
}
.moving-banner {
    display: none !important;
}
.platform-logo {
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}
/* Зеленый hover только для Лига Ставок */
#btnPari:hover .bonus-text,
.liga-review:hover {
    color: #00ff6a !important;
    text-shadow: 0 0 10px #00ff6a;
    transition: 0.3s ease;
}

/* Зеленый hover для "Читать полный обзор" (только Лига Ставок) */
.full-review-link.liga:hover {
    color: #00ff6a !important;
    text-shadow: 0 0 10px #00ff6a;
}
/* Зеленый hover специально для кнопки 7777 ₽ в winline */
.btn-secondary.winline-bonus:hover {
    color: #00ff6a !important;
    border-color: #00ff6a !important;
    text-shadow: 0 0 10px #00ff6a;
    transition: 0.25s ease;
    background: rgba(0, 255, 106, 0.15) !important;
}
/* Зеленый hover для кнопки 7777₽ на Winline */
.btn-secondary.winline-bonus:hover {
    color: #00ff6a !important;
    border-color: #00ff6a !important;
    text-shadow: 0 0 10px #00ff6a;
    background: rgba(0, 255, 106, 0.15) !important;
    transition: 0.25s ease;
}
.rating-value {
    display: none !important;
}
/* Цвет звездочек — как на примере */
.rating-stars {
    color: #ffc93d; /* ярко-жёлтый */
    font-size: 22px;
    letter-spacing: 2px;
}

/* Цвет "пустой" звезды */
.rating-stars span.empty {
    color: #555; /* серый, как на твоём примере */
}
/* Опустить кнопку Лига Ставок ниже под список */
#btnPari {
    margin-top: 18px;  /* Можешь поставить 20px если хочешь чуть ниже */
}
/* Чтобы звёзды были поверх и не пропадали */
.star-rating,
.star-rating .stars {
    position: relative;
    z-index: 5;
}
