/* assets/css/style.css */
/* -------------------------------------------------
   Baloo-style dark UI (approx. to provided reference)
   ------------------------------------------------- */

/* ============== CSS RESET (lightweight) ============== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #e7eefc;
  background: #0c0c0f;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:focus { outline: 2px solid rgba(255, 196, 0, 0.6); outline-offset: 2px; }

p { margin: 0 0 14px; line-height: 1.6; color: rgba(231, 238, 252, 0.88); }

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f1f6ff;
}

h1 { font-size: clamp(28px, 3vw, 40px); }
h2 { font-size: clamp(18px, 2vw, 24px); }

/* ============== TOKENS ============== */
:root{
  --bg-0: #0c0c0f;
  --bg-1: #141417;
  --panel: rgba(24, 24, 28, 0.85);
  --panel-2: rgba(20, 20, 23, 0.78);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-2: rgba(255, 255, 255, 0.06);
  --text: #e7eefc;
  --muted: rgba(231, 238, 252, 0.62);

  --gold-1: #ffc107;
  --gold-2: #ffda6a;
  --blue-2: var(--gold-1);
  --amber-1: #ffc54a;

  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-1: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-2: 0 18px 55px rgba(0,0,0,0.45);
  --blur: blur(10px);
}

/* ============== LAYOUT HELPERS ============== */
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-content { padding: 10px 0 50px; }

.content-section { padding: 18px 0; }

.content-section .container {
  background: rgba(20, 20, 23, 0.92);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  backdrop-filter: none;
  padding: 20px 22px;
}

.content-section .container p:last-child { margin-bottom: 0; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 12, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 14px;
}

.site-logo img {
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45));
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav-link {
  font-weight: 700;
  color: rgba(231, 238, 252, 0.82);
  padding: 6px 2px;
  transition: color .15s ease;
}

.header-nav-link:hover { color: #fff; }

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

@media (max-width: 700px) {
  .header-nav { display: none; }
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(241, 246, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.header-btn:hover { transform: translateY(-1px); border-color: rgba(255, 196, 0, 0.35); }

.header-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.header-btn-primary {
  border-color: transparent;
  background: var(--gold-1);
  color: #1a1206;
  font-weight: 800;
}

.header-btn-primary:hover { background: var(--gold-2); }

/* ============== HERO ============== */
.hero { padding: 22px 0 8px; }

.hero-inner {
  position: relative;
}

.hero-banner {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  min-height: 440px;
  position: relative;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.hero-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.55) 45%, rgba(5, 5, 7, 0.15) 75%, transparent 100%),
    radial-gradient(600px 300px at 20% 30%, rgba(255, 193, 7, 0.14), transparent 65%);
  pointer-events:none;
}

.hero-content {
  position: absolute;
  inset: 0 auto 0 0;
  width: 54%;
  z-index: 2;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.hero-content p {
  color: rgba(231, 238, 252, 0.85);
  max-width: 55ch;
}

.cta-button{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  border: none;
  background: var(--gold-1);
  color: #1a1206;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: none;
  width: fit-content;
  transition: transform .15s ease, background .15s ease;
}
.cta-button:hover { transform: translateY(-1px); background: var(--gold-2); }

/* ============== PROS / CONS ============== */
.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.pros-list li,
.cons-list li{
  padding: 12px 12px 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(22, 22, 25, 0.30);
  color: rgba(231, 238, 252, 0.88);
}

.pros-list li{
  border-color: rgba(46, 204, 113, 0.14);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.cons-list li{
  border-color: rgba(255, 197, 74, 0.12);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* ============== BRAND TABLE CARD ============== */
.brand-table { padding: 18px 0; }

.brand-table .card {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(28, 28, 32, 0.82) 0%, rgba(18, 18, 21, 0.62) 100%);
  box-shadow: var(--shadow-2);
  backdrop-filter: none;
  padding: 20px 22px;
}

.muted { color: var(--muted); }

.table-wrap { overflow-x: auto; margin-top: 12px; }

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(22, 22, 25, 0.35);
}

.info-table th,
.info-table td {
  padding: 12px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-table th {
  width: 38%;
  color: rgba(241, 246, 255, 0.85);
  font-weight: 700;
  background: rgba(255,255,255,0.02);
}

.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }

.table-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: none;
  background: var(--gold-1);
  color: #1a1206;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

/* ============== FAQ ============== */
.faq { margin-top: 10px; display: grid; gap: 10px; }

.faq__item {
  display: grid;
  gap: 8px;
}

.faq__q{
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 16px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(22, 22, 25, 0.35);
  color: rgba(241, 246, 255, 0.90);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }

.faq__q:hover{
  transform: translateY(-1px);
  border-color: rgba(255, 196, 0, 0.22);
  background: rgba(22, 22, 25, 0.42);
}

.faq__a{
  border-radius: 16px;
  padding: 12px 14px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(26, 26, 30, 0.40);
  color: rgba(231, 238, 252, 0.82);
}

/* ============== FOOTER ============== */
.site-footer{
  margin-top: 26px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 196, 0, 0.10);
  background: linear-gradient(180deg, rgba(6, 14, 30, 0.55) 0%, rgba(4, 9, 20, 0.75) 100%);
}

.footer-inner { display: grid; gap: 12px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a{
  color: rgba(231, 238, 252, 0.76);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(22, 22, 25, 0.25);
}
.footer-links a:hover{
  border-color: rgba(255, 196, 0, 0.22);
  color: rgba(241, 246, 255, 0.92);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px){
  .hero-banner { min-height: 280px; }
  .hero-content {
    position: static;
    width: 100%;
    padding: 18px 4px 0;
    border-radius: 0;
  }
  .header-inner { padding: 12px 0; }
}

@media (max-width: 560px){
  .header-actions { gap: 8px; }
  .header-btn { height: 40px; padding: 0 12px; border-radius: 12px; }
  .hero-content { padding: 20px 16px; }
  .content-section .container { padding: 18px 16px; }
  .brand-table .card { padding: 18px 16px; }
  .info-table th { width: 44%; }
}
/* =========================================
   TOC (Inhoudsopgave)
========================================= */

#toc .container {
  background: linear-gradient(180deg, rgba(36, 33, 22, 0.65) 0%, rgba(26, 26, 30, 0.55) 100%);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.toc-list li a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(22, 22, 25, 0.30);
  color: rgba(231, 238, 252, 0.85);
  font-weight: 600;
  transition: all .15s ease;
}

.toc-list li a:hover {
  border-color: rgba(255, 196, 0, 0.28);
  background: rgba(22, 22, 25, 0.45);
  transform: translateX(3px);
}


/* =========================================
   TEXT LINK (bonus link)
========================================= */

.text-link {
  font-weight: 700;
  color: var(--blue-2);
  border-bottom: 1px solid rgba(255, 196, 0, 0.4);
  transition: all .15s ease;
}

.text-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}


/* =========================================
   REVIEWS SECTION
========================================= */

.reviews-section .container {
  background: linear-gradient(180deg, rgba(30, 30, 34, 0.75) 0%, rgba(18, 18, 21, 0.65) 100%);
}

.section-header {
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 14px;
}

/* ===== Overall Rating ===== */

.overall-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(22, 22, 25, 0.35);
}

.overall-rating__score {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.overall-rating__stars {
  display: flex;
  gap: 4px;
}

.overall-rating__meta {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Stars ===== */

.star {
  font-size: 18px;
  color: rgba(255,255,255,0.25);
}

.star--filled {
  color: var(--amber-1);
}

.star--half {
  color: var(--amber-1);
  opacity: 0.6;
}

/* ===== Review Cards ===== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.review-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(22, 22, 25, 0.40);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .15s ease, border-color .15s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 0, 0.28);
}

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

.review-card__author {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.review-card__rating {
  display: flex;
  gap: 3px;
}

.review-card__text {
  font-size: 14px;
  color: rgba(231, 238, 252, 0.85);
  line-height: 1.5;
}

.review-card__footer {
  margin-top: auto;
}

.review-card__date {
  font-size: 12px;
  color: var(--muted);
}

/* ===== Disclaimer ===== */

.reviews-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
}


/* =========================================
   SMALL POLISH
========================================= */

html {
  scroll-behavior: smooth;
}
/* =========================================
   Collapsible TOC
========================================= */

.toc-section .container {
  background: linear-gradient(180deg, rgba(36, 33, 22, 0.75) 0%, rgba(26, 26, 30, 0.60) 100%);
}

.toc-details {
  display: block;
}

.toc-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(22, 22, 25, 0.35);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
  list-style: none;
}

.toc-toggle::-webkit-details-marker { display: none; }
.toc-toggle::marker { content: ""; }

.toc-toggle:hover {
  border-color: rgba(255, 196, 0, 0.28);
  transform: translateY(-1px);
}

.toc-arrow {
  transition: transform .2s ease;
}

.toc-details[open] .toc-arrow {
  transform: rotate(180deg);
}

.toc-content {
  margin-top: 12px;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--blue-2);
}
/* ================= FOOTER LAYOUT FIX ================= */

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-columns--single {
  grid-template-columns: auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
}

/* делаем ссылки колонкой */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* основные страницы немного выделяем */
.footer-links--main a {
  font-weight: 700;
  color: var(--blue-2);
}

/* делаем кнопки одинаковой ширины */
.footer-links a {
  width: fit-content;
  min-width: 180px;
}
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links a {
    min-width: auto;
  }
}

/* =========================================
   CONTENT BOXES (info / summary / note)
========================================= */

.info-box,
.summary-box,
.note-box {
  margin: 16px 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(22, 22, 25, 0.35);
  box-shadow: 0 12px 24px rgba(0,0,0,0.20);
}

.info-box h3,
.summary-box strong,
.note-box strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.info-box ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(231, 238, 252, 0.88);
}

.info-box ul li { margin-bottom: 6px; }

.summary-box {
  border-color: rgba(255, 196, 0, 0.22);
  background: linear-gradient(180deg, rgba(36, 33, 22, 0.55) 0%, rgba(26, 26, 30, 0.45) 100%);
}

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

.note-box {
  border-color: rgba(255, 197, 74, 0.22);
}

/* =========================================
   PROS / CONS COLUMNS (voor- en nadelen)
========================================= */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.pros-cons h3 { font-size: 16px; }

.pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.pros-cons li {
  padding: 12px 12px 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(22, 22, 25, 0.30);
  color: rgba(231, 238, 252, 0.88);
}

.pros-cons .pros li {
  border-color: rgba(46, 204, 113, 0.14);
}

.pros-cons .cons li {
  border-color: rgba(255, 197, 74, 0.12);
}

@media (max-width: 700px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* =========================================
   CONTENT TABLES (two-column header tables)
========================================= */

.content-section .table-wrap table thead th,
.content-section .table-wrap table tr:first-child th {
  width: auto;
}

.content-section ol {
  margin: 0 0 14px;
  padding-left: 22px;
  color: rgba(231, 238, 252, 0.88);
}

.content-section ol li { margin-bottom: 8px; }

.content-section > .container > ul:not(.toc-list):not(.pros-list):not(.cons-list),
.content-section .container ul.plain-list {
  margin: 0 0 14px;
  padding-left: 22px;
  color: rgba(231, 238, 252, 0.88);
}

.content-section ul:not(.toc-list):not(.pros-list):not(.cons-list) li,
.content-section ol li {
  line-height: 1.5;
}
