/* BitcoinCasino.su — Clean Light Theme 2026 */

:root {
  --primary: #1a56db;
  --primary-dark: #1341b0;
  --primary-light: #e8f0fe;
  --gold: #f5a623;
  --gold-dark: #d4881a;
  --green: #16a34a;
  --green-light: #dcfce7;
  --red: #dc2626;
  --bg: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: 9999; width: 0%; transition: width 0.1s;
}

/* ===== HEADER ===== */
.header-container {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.header { padding: 0; }
.header .container { display: flex; }
.header__container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0; gap: 20px;
}
.logo { padding: 6px 0; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo a img { height: 90px; width: auto; display: block; }
.logo-icon { display: none; }
.logo-text { display: none; }

.primary_menu_desktop_ver .menu {
  display: flex; gap: 4px; align-items: center;
}
.primary_menu_desktop_ver .menu a {
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  padding: 6px 12px; border-radius: 6px;
  transition: all var(--transition);
}
.primary_menu_desktop_ver .menu a:hover,
.primary_menu_desktop_ver .menu a.active {
  background: var(--primary-light); color: var(--primary);
}

.buttons_container .btn-primary {
  background: var(--primary); color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  white-space: nowrap; transition: background var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.buttons_container .btn-primary:hover { background: var(--primary-dark); color: #fff; }

/* Mobile menu button */
.mobile-menu-button {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; cursor: pointer;
  background: none; border: 1px solid var(--border); border-radius: 8px; gap: 5px;
}
.mobile-menu-button span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all var(--transition);
}

/* Offcanvas (mobile drawer) */
.offcanvas {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: #fff; z-index: 1000; transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1); padding: 20px;
}
.offcanvas.open { right: 0; }
.offcanvas-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.btn-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--text-muted); line-height: 1;
}
.offcanvas-body .menu { flex-direction: column; }
.offcanvas-body .menu a {
  display: block; padding: 10px 12px; font-size: 1rem;
  color: var(--text); font-weight: 500; border-radius: 8px;
}
.offcanvas-body .menu a:hover { background: var(--primary-light); color: var(--primary); }
.offcanvas-body .buttons { margin-bottom: 20px; }
.offcanvas-body .btn-primary {
  background: var(--primary); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; display: block; text-align: center;
}
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.3); z-index: 999;
}
.overlay.open { display: block; }

/* ===== HERO / WELCOME SECTION ===== */
.home-page { padding-top: 32px; }
.welcome-section { padding-bottom: 28px; }
.main_page_header_buttons { margin-bottom: 16px; }
.main_page_header_buttons .btn-primary {
  background: var(--primary); color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--transition);
}
.main_page_header_buttons .btn-primary:hover { background: var(--primary-dark); }

.welcome-section__container h1 {
  font-size: 1.85rem; font-weight: 800; color: var(--text);
  line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.5px;
}
.welcome-section__container .description {
  font-size: 1rem; color: var(--text-muted); max-width: 680px;
  line-height: 1.7;
}
.welcome-section__container .description p { margin-bottom: 8px; }

/* ===== TOC NAVIGATION ===== */
.toc_navigation-container { 
  border-bottom: 1px solid var(--border);
  background: var(--bg-gray);
}
.toc_navigation nav.container {
  display: flex; align-items: center; gap: 16px; padding-top: 10px; padding-bottom: 10px;
  flex-wrap: wrap;
}
.toc_navigation .min-title { 
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; 
  letter-spacing: 0.5px; color: var(--text-muted);
}
.toc_navigation .items { display: flex; gap: 8px; flex-wrap: wrap; }
.toc_navigation .items li a {
  font-size: 0.825rem; color: var(--primary); 
  padding: 4px 10px; background: var(--primary-light); border-radius: 20px;
}
.toc_navigation .items li a:hover { background: var(--primary); color: #fff; }
.toc_navigation .progress-container {
  height: 3px; background: var(--border); border-radius: 3px; width: 100px;
}
.toc_navigation .progress-bar {
  height: 100%; background: var(--primary); border-radius: 3px;
  width: 0%; transition: width 0.2s;
}

/* ===== CASINO RATING LIST ===== */
.bk-rating-list { margin: 24px 0 32px; }
.bk-rating-list ol { display: flex; flex-direction: column; gap: 12px; }
.bk-rating-list li { counter-increment: casino-counter; }

.bk-rating-list .item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.bk-rating-list .item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.bk-rating-list .item.top { border-left: 3px solid var(--gold); }
.bk-rating-list li:first-child .item { border-left: 3px solid var(--gold); }
.bk-rating-list li:nth-child(2) .item { border-left: 3px solid #c0c0c0; }
.bk-rating-list li:nth-child(3) .item { border-left: 3px solid #cd7f32; }

/* Number badge */
.bk-rating-list li::before {
  content: counter(casino-counter);
  position: absolute; top: -1px; left: -1px;
  width: 26px; height: 26px; z-index: 2;
  background: var(--text-muted); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius) 0 var(--radius-sm) 0;
}
.bk-rating-list li:first-child::before { background: var(--gold); }
.bk-rating-list li:nth-child(2)::before { background: #9ca3af; }
.bk-rating-list li:nth-child(3)::before { background: #cd7f32; }
ol { counter-reset: casino-counter; }

.bk-rating-list .logo {
  background: #0a0d20;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px; gap: 8px; min-height: 110px;
}
.bk-rating-list .logo img { max-width: 130px; max-height: 50px; object-fit: contain; }
.bk-rating-list .logo .svg { color: var(--gold); }

.bk-rating-list .bonus {
  padding: 16px 20px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  border-right: 1px solid var(--border);
}
.bk-rating-list .gift { color: var(--gold); }
.bk-rating-list .bonus_title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-muted);
}
.bk-rating-list .bonus_value {
  font-size: 1.2rem; font-weight: 800; color: var(--text); line-height: 1.2;
}
.bk-rating-list .bonus_description {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 2px;
}

.bk-rating-list .buttons {
  padding: 16px 20px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  min-width: 200px;
}
.bk-rating-list .btn-success {
  background: var(--green); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: background var(--transition); text-align: center;
  white-space: nowrap;
}
.bk-rating-list .btn-success:hover { background: #15803d; color: #fff; }
.bk-rating-list .btn-outline {
  background: transparent; color: var(--primary);
  padding: 7px 14px; border-radius: 8px; border: 1px solid var(--primary);
  font-size: 0.8rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--transition); text-align: center;
}
.bk-rating-list .btn-outline:hover { background: var(--primary); color: #fff; }

/* ===== SECTIONS ===== */
.wp-block-hc-container { margin-top: 0; }
.section-block { padding: 40px 0; border-top: 1px solid var(--border); }
.wp-block-heading {
  font-size: 1.5rem; font-weight: 800; color: var(--text);
  margin-bottom: 20px; letter-spacing: -0.3px;
}

/* ===== BONUS TYPES ===== */
.bonus-types-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 20px 0; }
.bonus-type-item {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
}
.bonus-type-item strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 4px; }
.bonus-type-item p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ===== GAME OVERVIEW / INFO TABLE ===== */
.game-overview { margin: 24px 0; }
.info-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.info-table th, .info-table td {
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table th { background: var(--bg-gray); font-weight: 700; color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.3px; }
.info-table tr:hover td { background: var(--bg-gray); }
.info-table td:first-child { font-weight: 600; color: var(--text); }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap { overflow-x: auto; margin: 20px 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 600px; }
.comparison-table th {
  background: var(--primary); color: #fff; padding: 10px 14px; text-align: left; font-size: 0.8rem;
}
.comparison-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.comparison-table tr:nth-child(even) td { background: var(--bg-gray); }
.comparison-table .rating-badge {
  background: var(--green-light); color: var(--green);
  padding: 2px 8px; border-radius: 20px; font-weight: 700; font-size: 0.8rem;
}
.comparison-table .check { color: var(--green); font-size: 1.1rem; }
.comparison-table .cross { color: var(--red); font-size: 1.1rem; }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.feature-card {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px; text-align: center;
}
.feature-card .icon { font-size: 2rem; margin-bottom: 10px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.825rem; color: var(--text-muted); margin: 0; }

/* ===== PAYMENT METHODS ===== */
.payment-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.payment-item {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}

/* ===== FAQ ACCORDION ===== */
.faq-section { padding: 40px 0; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  padding: 16px 20px; background: #fff; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  user-select: none; transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-gray); }
.faq-question .arrow {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: transform var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 20px 16px; }

/* ===== ARTICLE CONTENT ===== */
.article-content { padding: 40px 0; }
.article-content h2 { font-size: 1.4rem; font-weight: 800; margin: 32px 0 12px; color: var(--text); }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; color: var(--text); }
.article-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.article-content ul, .article-content ol { margin: 12px 0 16px 20px; }
.article-content li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.6; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--text); }

/* ===== CASINO HERO PAGE ===== */
.casino-page { padding: 24px 0 40px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; font-size: 0.825rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span.sep { color: var(--text-light); }

.casino-header {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 24px;
  align-items: start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); margin-bottom: 32px;
}
.casino-header .logo-box {
  background: #0a0d20; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; min-height: 120px;
}
.casino-header .logo-box img { max-width: 150px; max-height: 60px; object-fit: contain; }
.casino-header .info h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.casino-header .info .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rating-stars { color: var(--gold); font-size: 1.1rem; }
.rating-num { font-weight: 700; font-size: 1.1rem; }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }
.casino-header .info .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
  background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
}
.casino-header .cta-box { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.casino-header .bonus-big {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px; text-align: center;
}
.casino-header .bonus-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.casino-header .bonus-value { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.btn-casino {
  background: var(--green); color: #fff;
  padding: 12px 20px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background var(--transition); text-align: center;
}
.btn-casino:hover { background: #15803d; color: #fff; }
.promo-box {
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 8px; padding: 8px 12px; text-align: center;
  font-size: 0.8rem; color: #92400e;
}
.promo-box strong { color: #78350f; }

/* Casino screenshot */
.casino-screenshot { margin-bottom: 32px; }
.casino-screenshot img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}

/* Facts grid */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 24px 0; }
.fact-item {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; text-align: center;
}
.fact-icon { font-size: 1.5rem; margin-bottom: 6px; }
.fact-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.fact-value { font-size: 0.95rem; font-weight: 800; color: var(--text); }

/* Pros/cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pros, .cons {
  border-radius: var(--radius-sm); padding: 20px;
  border: 1px solid var(--border);
}
.pros { background: #f0fdf4; border-top: 3px solid var(--green); }
.cons { background: #fef2f2; border-top: 3px solid var(--red); }
.pros h3 { color: var(--green); margin-bottom: 12px; }
.cons h3 { color: var(--red); margin-bottom: 12px; }
.pros li, .cons li { font-size: 0.875rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; color: var(--text-muted); }
.pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✕'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #1341b0);
  border-radius: var(--radius); padding: 32px; text-align: center; margin: 32px 0;
  color: #fff;
}
.cta-section h2 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.btn-cta {
  background: var(--gold); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-size: 1rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition);
}
.btn-cta:hover { background: var(--gold-dark); color: #fff; }

/* Review section */
.review-section { padding: 32px 0; }
.review-section h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.review-section p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.review-section h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.review-section ul, .review-section ol { margin: 12px 0 16px 20px; }
.review-section li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 6px; }
.review-section ul li { list-style: disc; }

/* Other casinos */
.other-casinos-section { padding: 32px 0; border-top: 1px solid var(--border); }
.other-casinos-section h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; }
.other-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.other-card {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; text-align: center;
  transition: box-shadow var(--transition);
}
.other-card:hover { box-shadow: var(--shadow-md); }
.other-card img { width: 80px; height: 30px; object-fit: contain; margin: 0 auto 8px; }
.other-card a {
  font-size: 0.75rem; color: var(--primary); font-weight: 600;
  display: block; margin-top: 4px;
}

/* ===== INFO PAGES ===== */
.info-page-section { padding: 40px 0 60px; }
.info-page-content { max-width: 800px; }
.info-page-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.info-page-content h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 12px; }
.info-page-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.info-page-content ul, .info-page-content ol { margin: 12px 0 16px 20px; }
.info-page-content li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 6px; }
.info-page-content ul li { list-style: disc; }
.info-page-lead {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text); color: rgba(255,255,255,0.7);
  padding: 48px 0 24px; margin-top: 60px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .footer-logo {
  font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; display: block;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.resp-warning {
  background: rgba(255,255,255,0.05); border-radius: 8px;
  padding: 16px 20px; margin-top: 20px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7;
}

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  border: none; cursor: pointer; font-size: 1.1rem;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 50;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .other-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .primary_menu_desktop_ver, .buttons_container { display: none; }
  .mobile-menu-button { display: flex; }
  .welcome-section__container h1 { font-size: 1.4rem; }
  
  .bk-rating-list .item {
    grid-template-columns: 1fr;
  }
  .bk-rating-list .logo {
    flex-direction: row; padding: 14px 20px; min-height: auto;
  }
  .bk-rating-list .bonus { border-right: none; border-bottom: 1px solid var(--border); }
  .bk-rating-list .buttons { min-width: auto; }

  .casino-header { grid-template-columns: 1fr; }
  .casino-header .logo-box { max-width: 160px; }
  .pros-cons { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .welcome-section__container h1 { font-size: 1.25rem; }
  .other-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Compare Table ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.9rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.compare-table thead tr {
  background: var(--primary);
  color: #fff;
}
.compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
.compare-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:nth-child(even) { background: var(--bg-gray); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: #eef3ff; }
.compare-table td:first-child { font-weight: 600; color: var(--text-muted); }

/* ===== Review page ordered list ===== */
.review-section ol {
  padding-left: 20px;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-section ol li {
  line-height: 1.65;
  font-size: 0.95rem;
}
