/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #f72585;
  --blue: #4361ee;
  --green: #2d9e6b;
  --orange: #f4a261;
  --purple: #7b5ea7;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1e1e1e;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --muted: #888;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: var(--font-body); font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; }
select, input, textarea { font-family: var(--font-body); }

/* ===== TOPBAR ===== */
.topbar { background: #0a0a0a; border-bottom: 1px solid var(--border); padding: 6px 0; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.topbar-date { color: var(--muted); font-size: 12px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-link { color: var(--muted); font-size: 12px; font-weight: 600; transition: color 0.2s; }
.topbar-link:hover { color: #fff; }
.topbar-link-red { color: var(--red); }
/* Language switcher — scales to any number of languages */
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-current {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 1px solid var(--border); color: var(--muted);
  font-family: var(--font-head); font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 2px; cursor: pointer; transition: all .15s; white-space: nowrap;
}
.lang-current:hover { color: #fff; border-color: var(--text); }
.lang-switcher.open .lang-current { color: #fff; border-color: var(--blue); background: var(--blue); }
.lang-arrow { transition: transform .2s; flex-shrink: 0; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  min-width: 150px; z-index: 9999; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.lang-switcher.open .lang-menu { display: block; }
.lang-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; color: var(--muted); text-decoration: none;
  font-size: 13px; transition: background .15s, color .15s;
}
.lang-item:hover { background: var(--bg); color: #fff; }
.lang-item-active { color: var(--blue); font-weight: 600; }
.topbar-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; vertical-align: middle; }
.topbar-user { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 600; }

/* ===== HEADER ===== */
.header { background: var(--dark2); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; height: 64px; }

.logo { display: flex; align-items: baseline; gap: 2px; white-space: nowrap; flex-shrink: 0; }
.logo-load { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.logo-out  { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--red); letter-spacing: -1px; }
.logo-news { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 3px; margin-left: 6px; text-transform: uppercase; }

.nav { display: flex; gap: 2px; flex: 1; align-items: center; }
.nav-link { font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); padding: 6px 12px; border-radius: 2px; transition: all 0.2s; display: flex; align-items: center; gap: 4px; }
.nav-link:hover, .nav-link.active { color: #fff; background: var(--dark3); }
.nav-link.active { color: var(--red); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-arrow { transition: transform 0.2s; }
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 4px); left: 0; background: var(--dark2); border: 1px solid var(--border); border-top: 2px solid var(--red); border-radius: 0 0 4px 4px; min-width: 200px; display: none; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: var(--text); font-size: 14px; font-weight: 500; transition: background 0.15s; white-space: nowrap; }
.dropdown-item:hover { background: var(--dark3); color: var(--red); }
.dropdown-item-label { flex: 1; }
.dropdown-cat-img { width: 28px; height: 28px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
/* Flyout submenu */
.dropdown-has-sub { position: relative; }
.dropdown-sub-arrow { margin-left: auto; flex-shrink: 0; color: var(--muted); transition: color 0.15s; }
.dropdown-has-sub:hover .dropdown-sub-arrow { color: var(--red); }
.dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%; top: -1px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 4px 4px;
  min-width: 180px;
  z-index: 300;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.5);
}
.dropdown-has-sub:hover > .dropdown-submenu { display: block; }
.dropdown-has-sub:hover > .dropdown-item { background: var(--dark3); color: var(--red); }
.dropdown-cat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.dropdown-item-all { font-weight: 600; color: var(--red) !important; }
.dropdown-item-all:hover { background: var(--dark3); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

.search-btn { color: var(--muted); padding: 6px; transition: color 0.2s; flex-shrink: 0; }
.search-btn:hover { color: #fff; }

/* Search bar */
.search-bar { display: none; background: var(--dark3); border-top: 1px solid var(--border); padding: 12px 24px; }
.search-bar.open { display: block; }
.search-form { max-width: 1280px; margin: 0 auto; display: flex; gap: 8px; }
.search-input { flex: 1; background: var(--dark); border: 1px solid var(--border); color: var(--text); padding: 10px 14px; border-radius: 2px; font-size: 14px; outline: none; transition: border-color 0.2s; }
.search-input:focus { border-color: var(--red); }
.search-input::placeholder { color: var(--muted); }
.search-submit { background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 1px; padding: 10px 20px; border-radius: 2px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; }

/* ===== TICKER ===== */
.ticker-wrap { background: var(--red); display: flex; align-items: center; overflow: hidden; height: 36px; }
.ticker-label { background: #000; color: var(--red); font-family: var(--font-head); font-size: 13px; font-weight: 900; letter-spacing: 2px; padding: 0 16px; height: 100%; display: flex; align-items: center; flex-shrink: 0; white-space: nowrap; }
.ticker-track { flex: 1; overflow: hidden; }
.ticker-content { display: inline-block; white-space: nowrap; animation: ticker 40s linear infinite; font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }
.ticker-link { color: #fff; transition: opacity 0.2s; }
.ticker-link:hover { opacity: 0.8; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== MAIN ===== */
.main { max-width: 1280px; margin: 0 auto; padding: 32px 24px; }

/* ===== TAGS ===== */
.tag { display: inline-block; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.tag-red    { background: var(--red);    color: #fff; }
.tag-blue   { background: var(--blue);   color: #fff; }
.tag-green  { background: var(--green);  color: #fff; }
.tag-orange { background: var(--orange); color: #000; }
.tag-purple { background: var(--purple); color: #fff; }

/* ===== HERO ===== */
.hero { display: grid; grid-template-columns: 1fr 360px; gap: 20px; margin-bottom: 48px; }

/* Slider wrapper */
.hero-slider-wrap { position: relative; }
.hero-slide { display: none; }
.hero-slide.hero-slide-active { display: block; animation: heroFade 0.55s ease; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

/* Arrow nav buttons */
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 42px; height: 42px; border-radius: 50%; background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; backdrop-filter: blur(4px); }
.hero-nav:hover { background: var(--blue); border-color: var(--blue); }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }

/* Dot indicators */
.hero-dots { position: absolute; bottom: 16px; right: 20px; display: flex; gap: 6px; z-index: 10; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: all 0.2s; padding: 0; }
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot-active { background: var(--blue); transform: scale(1.25); }

.hero-img-wrap { position: relative; border-radius: 4px; overflow: hidden; height: 480px; display: block; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hero-img-placeholder { width: 100%; height: 100%; background: var(--dark3); }
.hero-img-wrap:hover .hero-img { transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.hero-title { font-family: var(--font-head); font-size: 34px; font-weight: 800; line-height: 1.15; color: #fff; margin: 10px 0 12px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero-excerpt { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.6; margin-bottom: 14px; max-width: 560px; }
.hero-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-side { display: flex; flex-direction: column; gap: 12px; }
.hero-side-card { display: flex; gap: 14px; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; flex: 1; transition: border-color 0.2s; }
.hero-side-card:hover { border-color: var(--red); }
.side-img { width: 110px; height: 100%; object-fit: cover; flex-shrink: 0; }
.side-img-placeholder { width: 110px; background: var(--dark3); flex-shrink: 0; }
.side-content { padding: 14px 14px 14px 0; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.side-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; line-height: 1.3; color: #fff; }
.side-meta { font-size: 12px; color: var(--muted); }

/* ===== CONTENT LAYOUT ===== */
.content-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }

/* ===== SECTION HEADER ===== */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }
.section-title { font-family: var(--font-head); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.see-all { font-size: 13px; color: var(--red); font-weight: 600; transition: opacity 0.2s; }
.see-all:hover { opacity: 0.7; }

/* ===== ARTICLE GRID ===== */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; display: block; }
.card:hover { border-color: var(--red); transform: translateY(-2px); }
.card-img-wrap { position: relative; height: 180px; overflow: hidden; }
.card-img { height: 100%; transition: transform 0.4s; }
.card-img-placeholder { height: 100%; background: var(--dark3); }
.card:hover .card-img { transform: scale(1.05); }
.card-tag { position: absolute; top: 10px; left: 10px; }
.card-score-badge { position: absolute; top: 10px; right: 10px; font-family: var(--font-head); font-size: 18px; font-weight: 900; line-height: 1; padding: 4px 8px; border-radius: 4px; }
.card-score-badge.score-must { background: var(--blue);   color: #fff; }
.card-score-badge.score-good { background: var(--green);  color: #fff; }
.card-score-badge.score-ok   { background: var(--orange); color: #fff; }
.card-score-badge.score-bad  { background: var(--red);    color: #fff; }
.card-body { padding: 16px; }
.card-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; line-height: 1.3; color: #fff; margin-bottom: 8px; }
.card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.card-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.author { color: var(--red); font-weight: 600; }
.dot { color: var(--border); }
.no-articles { grid-column: 1/-1; color: var(--muted); padding: 32px; text-align: center; }
.no-articles a { color: var(--red); }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 20px; }
.widget-title { font-family: var(--font-head); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 12px; margin-bottom: 16px; border-bottom: 2px solid var(--red); }

/* Category list */
.cat-list { display: flex; flex-direction: column; gap: 4px; }
.cat-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 2px; transition: background 0.15s; color: var(--text); }
.cat-item:hover, .cat-item-active { background: var(--dark3); color: var(--red); }
.cat-item-img { width: 28px; height: 28px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.cat-item-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.cat-item-name { flex: 1; font-size: 14px; font-weight: 500; }
.cat-arrow { color: var(--muted); font-size: 14px; }

/* Newsletter */
.newsletter-widget { background: linear-gradient(135deg, #1a0a0a, #1e1e1e); border-color: var(--red); }
.newsletter-text { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input { background: var(--dark3); border: 1px solid var(--border); color: var(--text); padding: 10px 12px; border-radius: 2px; font-size: 13px; outline: none; transition: border-color 0.2s; }
.newsletter-input:focus { border-color: var(--red); }
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-btn { background: var(--red); color: #fff; font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 10px; border-radius: 2px; transition: opacity 0.2s; }
.newsletter-btn:hover { opacity: 0.85; }

/* Social */
.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.social-btn { display: block; text-align: center; padding: 9px; border-radius: 2px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); transition: all 0.2s; }
.social-x { color: #fff; } .social-ig { color: #e1306c; } .social-yt { color: #ff0000; } .social-dc { color: #5865f2; } .social-rss { color: #f77f00; }
.social-btn:hover { border-color: currentColor; background: rgba(255,255,255,0.04); }

/* ===== HOME FEED (news + reviews side by side) ===== */
.home-feed { display: flex; flex-direction: column; gap: 48px; flex: 1; min-width: 0; }

/* Latest Reviews horizontal list */
.home-reviews-list { display: flex; flex-direction: column; gap: 12px; }
.home-review-card { display: flex; gap: 14px; background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color .2s, transform .15s; }
.home-review-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.home-review-img-wrap { position: relative; width: 110px; flex-shrink: 0; }
.home-review-img { width: 110px; height: 100%; object-fit: cover; display: block; }
.home-review-img-placeholder { width: 110px; min-height: 80px; background: var(--dark3); }
.home-review-img-wrap .card-score-badge { font-size: 14px; padding: 2px 6px; }
.home-review-body { flex: 1; padding: 12px 14px 12px 0; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.home-review-cat { font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); }
.home-review-title { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: #fff; line-height: 1.2; }
.home-review-product { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) { .home-feed { gap: 32px; } }

/* DB page content */
.page-content { font-size: 15px; color: #ccc; line-height: 1.75; }
.page-content h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .5px; margin: 28px 0 12px; }
.page-content h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #fff; margin: 20px 0 8px; }
.page-content p  { margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 0 0 14px 24px; }
.page-content li { margin-bottom: 4px; }
.page-content a  { color: var(--blue); text-decoration: underline; }

/* ===== CATEGORY BANNER ===== */
.cat-banner { background: var(--dark3) center/cover no-repeat; position: relative; height: 200px; display: flex; align-items: flex-end; margin-bottom: 32px; border-radius: 4px; overflow: hidden; }
.cat-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3)); }
.cat-banner-content { position: relative; padding: 24px; }
.cat-banner-title { font-family: var(--font-head); font-size: 40px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.cat-banner-desc { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }
.cat-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.cat-breadcrumb-link { color: rgba(255,255,255,0.6); transition: color .15s; }
.cat-breadcrumb-link:hover { color: #fff; }
.cat-breadcrumb-sep { opacity: .5; }
/* Subcategory navigation bar */
.subcat-nav { background: var(--dark2); border-bottom: 1px solid var(--border); padding: 10px 0; margin-bottom: 28px; }
.subcat-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.subcat-nav-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-right: 4px; flex-shrink: 0; }
.subcat-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--muted); transition: all .15s; white-space: nowrap; }
.subcat-chip:hover { border-color: var(--red); color: var(--red); }
.subcat-chip-active { background: var(--red) !important; border-color: var(--red) !important; color: #fff !important; }
.subcat-chip-img { width: 16px; height: 16px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }

/* Category pill with subcategory dropdown */
.subcat-chip-wrap { position: relative; display: inline-flex; }
.subcat-chip-wrap:hover .subcat-chip { border-color: var(--red); color: var(--red); }
.subcat-chip-wrap-active > .subcat-chip { background: var(--red); border-color: var(--red); color: #fff; }
.subcat-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #181818; border: 1px solid var(--border); border-radius: 6px;
  min-width: 180px; z-index: 500; padding: 4px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.subcat-chip-wrap:hover .subcat-dropdown { display: block; }
.subcat-dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--muted);
  transition: background .12s, color .12s; white-space: nowrap;
}
.subcat-dropdown-item:hover { background: rgba(255,255,255,.05); color: #fff; }
.subcat-dropdown-item-active { color: var(--red) !important; }
.subcat-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.subcat-dropdown-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

/* Sidebar subcategory indent */
.cat-item-sub { padding-left: 22px; font-size: 13px; }
.cat-item-sub .cat-item-name { color: var(--muted); }
.cat-item-sub:hover .cat-item-name, .cat-item-sub.cat-item-active .cat-item-name { color: var(--red); }

/* Reviews filter */
.reviews-filter { display: flex; align-items: center; gap: 10px; }
.filter-label { font-size: 13px; color: var(--muted); }
.filter-select { background: var(--dark3); border: 1px solid var(--border); color: var(--text); padding: 6px 12px; border-radius: 2px; font-size: 13px; cursor: pointer; outline: none; transition: border-color 0.2s; }
.filter-select:focus { border-color: var(--red); }

/* Pagination */
.pagination { display: flex; gap: 8px; margin-top: 32px; justify-content: center; }
.page-btn { display: inline-block; padding: 8px 14px; border: 1px solid var(--border); border-radius: 2px; font-size: 14px; color: var(--muted); transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ===== ARTICLE PAGE ===== */
.article-top-ad { display: flex; justify-content: center; padding: 16px 24px 0; max-width: 1500px; margin: 0 auto; }
.article-main { display: grid; grid-template-columns: 160px 1fr 300px 160px; gap: 24px; max-width: 1500px; margin: 0 auto; padding: 24px 24px 32px; align-items: start; }
.article-ad-left, .article-ad-right { position: sticky; top: 80px; display: flex; justify-content: center; }
/* ≤1300px — drop side skyscrapers, keep article + sidebar */
@media (max-width: 1300px) { .article-main { grid-template-columns: 1fr 300px; } .article-ad-left, .article-ad-right { display: none; } }
/* ≤900px — single column */
@media (max-width: 900px) { .article-main { grid-template-columns: 1fr; } }
.article-header { margin-bottom: 24px; }
.author-edit-btn { display:inline-flex; align-items:center; gap:5px; padding:5px 12px; background:rgba(247,37,133,.12); border:1px solid rgba(247,37,133,.3); color:var(--red); border-radius:3px; font-size:12px; font-weight:600; transition:all .15s; white-space:nowrap; }
.author-edit-btn:hover { background:var(--red); color:#fff; }
.article-title { font-family: var(--font-head); font-size: 42px; font-weight: 900; line-height: 1.1; margin: 12px 0 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.article-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.author-name { display: block; font-weight: 600; color: var(--red); font-size: 14px; }
.article-date { display: block; color: var(--muted); font-size: 12px; }
.article-cover { width: 100%; max-height: 480px; object-fit: cover; border-radius: 4px; margin-bottom: 28px; }
.article-body { font-size: 16px; line-height: 1.8; color: #ccc; }
.article-body h2, .article-body h3 { font-family: var(--font-head); font-weight: 800; color: #fff; margin: 28px 0 12px; }
.article-body h2 { font-size: 28px; } .article-body h3 { font-size: 22px; }
.article-body p { margin-bottom: 18px; }
.article-body a { color: var(--red); text-decoration: underline; }

/* Related */
.related-item { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.4; color: var(--text); transition: color 0.2s; }
.related-item:hover { color: var(--red); }
.related-item:last-child { border-bottom: none; }
.muted-text { color: var(--muted); font-size: 13px; }

/* ===== COMMENTS ===== */
.comments-section { margin-top: 40px; border-top: 2px solid var(--border); padding-top: 32px; }
.comments-title { font-family: var(--font-head); font-size: 24px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.comments-count { color: var(--muted); font-weight: 600; }
.comment-form { margin-bottom: 28px; }
.comment-textarea { width: 100%; background: var(--dark2); border: 1px solid var(--border); color: var(--text); padding: 12px; border-radius: 4px; font-size: 14px; resize: vertical; outline: none; margin-bottom: 10px; transition: border-color 0.2s; }
.comment-textarea:focus { border-color: var(--red); }
.comment-login-prompt { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; padding: 16px; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; }
.comments-list { display: flex; flex-direction: column; gap: 20px; }
.comment { display: flex; gap: 14px; }
.comment-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.comment-body { flex: 1; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 12px 16px; }
.comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.comment-author { font-weight: 600; color: var(--red); font-size: 14px; }
.comment-time { color: var(--muted); font-size: 12px; }
.comment-text { font-size: 14px; line-height: 1.6; }
.no-comments { color: var(--muted); font-size: 14px; padding: 20px 0; }

/* Replies */
.comment-reply { background: rgba(255,255,255,0.02); }
.replies-list { margin-left: 52px; margin-top: 8px; display: flex; flex-direction: column; gap: 12px; border-left: 2px solid var(--border); padding-left: 16px; }
.reply-btn { background: none; border: none; color: var(--muted); font-size: 12px; font-weight: 600; cursor: pointer; margin-top: 8px; padding: 0; transition: color 0.2s; }
.reply-btn:hover { color: var(--red); }
.reply-form-wrap { margin-top: 10px; }
.reply-form { margin-bottom: 0; }
.btn-cancel { background: none; border: 1px solid var(--border); color: var(--muted); font-size: 13px; padding: 8px 16px; border-radius: 2px; cursor: pointer; transition: all 0.2s; }
.btn-cancel:hover { border-color: var(--muted); color: #fff; }
.comment-role-tag { font-size: 10px; padding: 2px 6px; vertical-align: middle; }

/* ===== AUTH ===== */
.auth-main { display: flex; justify-content: center; align-items: flex-start; padding: 48px 24px; }
.auth-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 40px; width: 100%; max-width: 440px; }
.auth-title { font-family: var(--font-head); font-size: 32px; font-weight: 900; margin-bottom: 6px; }
.auth-sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-switch { margin-top: 20px; font-size: 13px; color: var(--muted); text-align: center; }
.auth-switch a { color: var(--red); }

/* Avatar upload */
.avatar-upload-group { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 4px 0; }
.avatar-preview-wrap { cursor: pointer; position: relative; display: inline-block; }
.avatar-preview { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.avatar-upload-hint { display: block; font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }
.avatar-file-input { display: none; }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark3); border: 1px solid var(--border); color: var(--text);
  padding: 10px 12px; border-radius: 2px; font-size: 14px; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 24px; border-radius: 2px; cursor: pointer; transition: opacity 0.2s; border: none; }
.btn-primary:hover { opacity: 0.85; }
.btn-danger { display: inline-block; background: transparent; color: var(--red); border: 1px solid var(--red); font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 24px; border-radius: 2px; cursor: pointer; transition: all 0.2s; text-align: center; }
.btn-danger:hover { background: var(--red); color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* ===== ALERTS ===== */
.alert { padding: 12px 16px; border-radius: 2px; font-size: 14px; margin-bottom: 16px; }
.alert-error   { background: rgba(230,57,70,0.15); border: 1px solid var(--red); color: #ff6b78; }
.alert-success { background: rgba(45,158,107,0.15); border: 1px solid var(--green); color: #4ecca3; }

/* ===== USERBAR ===== */
.userbar { position: relative; }
.userbar-trigger { display: flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer; padding: 4px 8px; border-radius: 4px; transition: background 0.15s; }
.userbar-trigger:hover { background: rgba(255,255,255,0.06); }
.userbar-name { font-size: 13px; font-weight: 600; color: var(--text); }
.userbar-arrow { color: var(--muted); transition: transform 0.2s; }
.userbar.open .userbar-arrow { transform: rotate(180deg); }
.userbar-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: var(--dark2); border: 1px solid var(--border); border-top: 2px solid var(--red); border-radius: 0 0 4px 4px; min-width: 220px; z-index: 300; box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
.userbar.open .userbar-menu { display: block; }
.userbar-header { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.userbar-menu-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.userbar-menu-name { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 4px; }
.userbar-divider { height: 1px; background: var(--border); }
.userbar-item { display: block; padding: 10px 16px; font-size: 14px; color: var(--text); transition: background 0.15s; }
.userbar-item:hover { background: var(--dark3); color: #fff; }
.userbar-item-red { color: var(--red); }
.userbar-item-red:hover { background: rgba(230,57,70,0.1); }

/* Guest state */
.userbar-guest { display: flex; align-items: center; gap: 10px; }
.guest-avatar  { font-size: 16px; opacity: 0.4; }
.guest-label   { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #111; border-top: 2px solid var(--red); z-index: 9999; padding: 16px 24px; }
.cookie-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; }
.cookie-text strong { display: block; font-size: 14px; color: #fff; margin-bottom: 4px; }
.cookie-text p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cookie-link { color: var(--red); font-size: 12px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 9px 18px; border-radius: 2px; cursor: pointer; border: none; }
.cookie-accept { background: var(--red); color: #fff; }
.cookie-reject { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.cookie-reject:hover { border-color: var(--muted); color: #fff; }

/* ===== LEGAL PAGES ===== */
.legal-main { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.legal-wrap { max-width: 820px; }
.legal-lang-toggle { display: flex; gap: 8px; margin-bottom: 32px; }
.lang-toggle-btn { padding: 8px 20px; border-radius: 2px; font-size: 14px; font-weight: 600; border: 1px solid var(--border); color: var(--muted); background: none; cursor: pointer; transition: all 0.2s; }
.lang-toggle-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.legal-title { font-family: var(--font-head); font-size: 42px; font-weight: 900; margin-bottom: 6px; }
.legal-updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.legal-section { margin-bottom: 28px; }
.legal-section h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-section p, .legal-section li { font-size: 15px; color: #bbb; line-height: 1.7; }
.legal-section ul { padding-left: 20px; margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.legal-section a { color: var(--red); }

/* GDPR checkbox */
.gdpr-check { margin-top: 4px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--muted); line-height: 1.5; }
.checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--red); width: 15px; height: 15px; }
.checkbox-label a { color: var(--red); }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a1a 50%, #0a0a1a 100%); border-bottom: 3px solid var(--red); padding: 64px 24px; text-align: center; }
.about-logo .logo-load { font-size: 52px; } .about-logo .logo-out { font-size: 52px; } .about-logo .logo-news { font-size: 20px; }
.about-tagline { color: var(--muted); font-size: 18px; margin-top: 12px; }
.about-wrap { max-width: 960px; margin: 0 auto; padding: 48px 24px; }
.about-section { margin-bottom: 48px; }
.about-section p { color: #bbb; font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.about-section-title { font-family: var(--font-head); font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); }

/* Stats */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.about-stat { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 24px; text-align: center; }
.about-stat-num { display: block; font-family: var(--font-head); font-size: 44px; font-weight: 900; color: var(--red); line-height: 1; }
.about-stat-label { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; font-weight: 600; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.team-group-section { margin-bottom: 40px; }
.team-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: border-color 0.2s; }
.team-card:hover { border-color: var(--red); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.team-avatar-placeholder { width: 72px; height: 72px; border-radius: 50%; background: var(--dark3); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.team-info { flex: 1; min-width: 0; }
.team-name { font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.team-username { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 8px; }
.team-socials { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.team-social { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; text-decoration: none; transition: opacity 0.15s; border: 1px solid var(--border); }
.team-social:hover { opacity: 0.8; }
.team-social span { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.team-social-x      { background: #111; color: #fff; border-color: #333; }
.team-social-twitch { background: #1a0a2e; color: #9146ff; border-color: #9146ff44; }
.team-social-yt     { background: #1a0000; color: #ff4444; border-color: #ff444444; }

/* Legal grid */
.about-legal { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.about-legal .about-section-title { border-bottom-color: var(--blue); }
.about-legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.about-legal-grid h3 { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.about-legal-grid p { font-size: 14px; color: #bbb; line-height: 1.6; }
.about-legal-grid a { color: var(--red); }

/* ===== FOOTER ===== */
.footer { background: #080808; border-top: 3px solid var(--red); margin-top: 64px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 48px 24px 32px; display: grid; grid-template-columns: 1fr auto; gap: 64px; }
.footer-logo .logo-load, .footer-logo .logo-out { font-size: 24px; }
.footer-logo .logo-news { font-size: 11px; }
.footer-tagline { color: var(--muted); font-size: 13px; margin-top: 8px; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 4px; }
.footer-col a { color: var(--muted); font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }
.footer-bottom-legal { display: flex; align-items: center; gap: 16px; }
.footer-bottom-legal a { color: var(--muted); transition: color 0.2s; }
.footer-bottom-legal a:hover { color: var(--red); }
.footer-publisher { color: var(--muted); font-size: 12px; }
.footer-publisher strong { color: #ccc; }
.footer-divider { color: var(--border); }

/* Form row (two columns) */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== REVIEWS LIST PAGE ===== */
.reviews-hero { background: linear-gradient(135deg, #0d0d0d 0%, #141420 100%); border-bottom: 3px solid var(--blue); padding: 48px 24px; }
.reviews-hero-inner { max-width: 1280px; margin: 0 auto; }
.reviews-hero-title { font-family: var(--font-head); font-size: 52px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; line-height: 1; }
.reviews-hero-sub { color: var(--muted); font-size: 16px; margin-top: 8px; }

.reviews-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 12px; flex-wrap: wrap; }
.reviews-bar-left { display: flex; align-items: center; gap: 10px; }
.reviews-bar-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.reviews-count { font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.reviews-filter-tag { background: rgba(67,97,238,0.15); border: 1px solid var(--blue); color: var(--blue); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 2px; display: flex; align-items: center; gap: 6px; }
.reviews-filter-tag a { color: inherit; opacity: 0.7; }
.reviews-filter-tag a:hover { opacity: 1; }

/* Review card score badge */
.review-card { position: relative; }
.review-score-badge { position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 20px; font-weight: 900; z-index: 2; color: #fff; }
/* Coloured background badges (small boxes) */
.review-score-badge.score-must, .sidebar-review-score.score-must, .search-score.score-must { background: var(--blue);   color: #fff; }
.review-score-badge.score-good, .sidebar-review-score.score-good, .search-score.score-good { background: var(--green);  color: #fff; }
.review-score-badge.score-ok,   .sidebar-review-score.score-ok,   .search-score.score-ok   { background: var(--orange); color: #fff; }
.review-score-badge.score-bad,  .sidebar-review-score.score-bad,  .search-score.score-bad  { background: var(--red);    color: #fff; }

/* Score-overall panel text colours (no background — panel stays dark) */
.score-overall.score-must .score-overall-num, .score-overall.score-must .score-overall-label { color: var(--blue); }
.score-overall.score-good .score-overall-num, .score-overall.score-good .score-overall-label { color: var(--green); }
.score-overall.score-ok   .score-overall-num, .score-overall.score-ok   .score-overall-label { color: var(--orange); }
.score-overall.score-bad  .score-overall-num, .score-overall.score-bad  .score-overall-label { color: var(--red); }

/* Verdict score number text colour only — no background */
.verdict-score.score-must .verdict-score-num { color: var(--blue); }
.verdict-score.score-good .verdict-score-num { color: var(--green); }
.verdict-score.score-ok   .verdict-score-num { color: var(--orange); }
.verdict-score.score-bad  .verdict-score-num { color: var(--red); }

.review-product-name { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 4px; }
.review-stars-small { display: inline-flex; gap: 1px; margin-right: 4px; }
.stars { display: inline-flex; gap: 2px; }
.star { font-size: 14px; }
.star-on  { color: #f4b942; }
.star-off { color: #333; }

/* Sidebar review list */
.sidebar-review-item { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.sidebar-review-item:last-child { border-bottom: none; }
.sidebar-review-title { color: #ccc; transition: color 0.2s; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-review-item:hover .sidebar-review-title { color: var(--blue); }
.sidebar-review-score { font-family: var(--font-head); font-size: 16px; font-weight: 900; padding: 2px 8px; border-radius: 2px; flex-shrink: 0; }

/* ===== SINGLE REVIEW PAGE ===== */
.review-hero { background: var(--dark2) center/cover no-repeat; position: relative; min-height: 420px; display: flex; align-items: flex-end; }
.review-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%); }
.review-hero-inner { position: relative; z-index: 1; max-width: 1280px; width: 100%; margin: 0 auto; padding: 48px 24px 40px; }
.review-hero-meta { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.review-hero-product { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); margin-bottom: 6px; }
.review-hero-title { font-family: var(--font-head); font-size: 48px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; line-height: 1.05; max-width: 820px; word-break: break-word; overflow-wrap: break-word; hyphens: auto; }
.review-hero-excerpt { color: #ccc; font-size: 16px; margin-top: 12px; max-width: 680px; line-height: 1.6; }
.review-visit-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 9px 20px; background: rgba(67,97,238,0.15); border: 1px solid var(--blue); border-radius: 4px; color: var(--blue); font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; }
.review-visit-btn:hover { background: var(--blue); color: #fff; }
.review-hero-divider { width: 48px; height: 3px; background: var(--blue); border-radius: 2px; margin: 16px 0; }
.review-hero-byline { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.review-hero-byline a { color: #ccc; transition: color 0.2s; }
.review-hero-byline a:hover { color: var(--blue); }
.review-byline-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); }

.review-wrap { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.review-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.review-content { min-width: 0; }
.review-sidebar { position: sticky; top: 80px; }

/* Score panel */
.score-panel { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 24px; text-align: center; }
.score-panel-inline { display: none; margin-bottom: 32px; }
.score-overall { display: flex; flex-direction: column; align-items: center; margin-bottom: 12px; }
.score-overall-num { font-family: var(--font-head); font-size: 72px; font-weight: 900; line-height: 1; }
.score-overall-label { font-family: var(--font-head); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
.score-overall.score-must .score-overall-num, .score-overall.score-must .score-overall-label { color: var(--blue); }
.score-overall.score-good .score-overall-num, .score-overall.score-good .score-overall-label { color: var(--green); }
.score-overall.score-ok   .score-overall-num, .score-overall.score-ok   .score-overall-label { color: var(--orange); }
.score-overall.score-bad  .score-overall-num, .score-overall.score-bad  .score-overall-label { color: var(--red); }
.score-panel .stars .star { font-size: 20px; }

.score-breakdown { width: 100%; margin-top: 12px; }
.score-row { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 8px; row-gap: 5px; margin-bottom: 14px; }
.score-row-label { grid-column: 1 / -1; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); }
.score-bar-wrap { grid-column: 1; grid-row: 2; height: 6px; background: var(--dark3); border-radius: 3px; overflow: hidden; align-self: center; }
.score-bar { height: 100%; border-radius: 3px; transition: width 0.6s ease; }
.score-row-num { grid-column: 2; grid-row: 2; font-size: 12px; font-weight: 700; color: #ccc; white-space: nowrap; align-self: center; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.pros-box, .cons-box { border-radius: 4px; padding: 20px; }
.pros-box { background: rgba(45,158,107,0.08); border: 1px solid rgba(45,158,107,0.25); }
.cons-box { background: rgba(247,37,133,0.08); border: 1px solid rgba(247,37,133,0.25); }
.pros-cons-title { font-family: var(--font-head); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pros-title { color: var(--green); }
.cons-title { color: var(--red); }
.pros-cons-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pros-box .pros-cons-list li::before { content: '+ '; color: var(--green); font-weight: 700; }
.cons-box .pros-cons-list li::before { content: '− '; color: var(--red); font-weight: 700; }
.pros-cons-list li { font-size: 14px; color: #ccc; line-height: 1.5; }

/* Verdict */
.verdict-box { background: var(--dark2); border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 4px; padding: 24px; margin: 32px 0; }
.verdict-label { font-family: var(--font-head); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); margin-bottom: 10px; }
.verdict-text { font-size: 16px; color: #ddd; line-height: 1.7; margin-bottom: 16px; }
.verdict-score { display: flex; align-items: center; gap: 16px; }
.verdict-score-num { font-family: var(--font-head); font-size: 48px; font-weight: 900; line-height: 1; }
.verdict-score.score-must .verdict-score-num { color: var(--blue); }
.verdict-score.score-good .verdict-score-num { color: var(--green); }
.verdict-score.score-ok   .verdict-score-num { color: var(--orange); }
.verdict-score.score-bad  .verdict-score-num { color: var(--red); }
.verdict-score-label { font-family: var(--font-head); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-top: 4px; }
.verdict-score .stars .star { font-size: 18px; }

/* Product info grid */
.review-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin: 32px 0; }
.review-info-item { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.review-info-item:nth-child(even) { border-right: none; }
.review-info-item-full { grid-column: 1 / -1; border-right: none; }
.review-info-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue); transition: color 0.2s; }
.review-info-link:hover { color: #fff; }
.review-info-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 700; }
.review-info-val { font-size: 14px; font-weight: 600; color: #ddd; }

/* Author box */
.article-translations { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 12px 0 20px; font-size: 13px; color: var(--muted); }
.translation-link { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border: 1px solid var(--border); border-radius: 3px; color: var(--muted); font-size: 12px; font-weight: 600; transition: border-color .15s, color .15s; }
.translation-link:hover { border-color: var(--blue); color: var(--blue); }
.author-box { display: flex; gap: 16px; align-items: flex-start; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 20px; margin-top: 32px; }
.author-box-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.author-box-name { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 4px; }
.author-box-bio { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* tag-dark */
.tag-dark { background: rgba(255,255,255,0.08); color: #bbb; }

/* ===== TAGS ===== */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.article-tag { font-size: 12px; font-weight: 600; color: var(--muted); background: var(--dark3); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; transition: all 0.2s; }
.article-tag:hover { color: var(--blue); border-color: var(--blue); }
.tags-preview { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; min-height: 16px; }
.tag-chip { font-size: 11px; font-weight: 600; color: var(--blue); background: rgba(67,97,238,0.12); border: 1px solid rgba(67,97,238,0.3); border-radius: 20px; padding: 2px 10px; }

/* ===== SEARCH PAGE ===== */
.search-page-wrap { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
.search-hero { margin-bottom: 32px; }
.search-hero-form { display: flex; gap: 0; }
.search-hero-input { flex: 1; padding: 14px 18px; background: var(--dark2); border: 2px solid var(--border); border-right: none; color: var(--text); font-size: 16px; border-radius: 4px 0 0 4px; outline: none; transition: border-color 0.2s; }
.search-hero-input:focus { border-color: var(--blue); }
.search-hero-btn { padding: 14px 28px; background: var(--blue); color: #fff; font-family: var(--font-head); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 0 4px 4px 0; transition: opacity 0.2s; }
.search-hero-btn:hover { opacity: 0.85; }

.search-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.search-result-count { color: var(--muted); font-size: 14px; }
.search-result-count strong { color: #fff; }
.search-type-tabs { display: flex; gap: 4px; }
.search-tab { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 5px 14px; border: 1px solid var(--border); border-radius: 2px; color: var(--muted); transition: all 0.2s; }
.search-tab:hover { border-color: var(--blue); color: var(--blue); }
.search-tab-active { background: var(--blue); border-color: var(--blue); color: #fff; }

.search-results { display: flex; flex-direction: column; gap: 2px; }
.search-result-card { display: flex; gap: 16px; padding: 16px; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; transition: border-color 0.2s; margin-bottom: 6px; }
.search-result-card:hover { border-color: var(--blue); }
.search-result-thumb { width: 100px; height: 68px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.search-result-thumb-empty { background: var(--dark3); }
.search-result-body { flex: 1; min-width: 0; }
.search-result-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.search-result-type { font-size: 11px; color: var(--muted); font-weight: 600; }
.search-result-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.search-result-product { font-weight: 400; color: var(--muted); font-size: 14px; }
.search-result-excerpt { font-size: 13px; color: #aaa; line-height: 1.5; margin-bottom: 8px; }
.search-result-footer { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.search-result-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.result-tag { background: var(--dark3); border: 1px solid var(--border); border-radius: 10px; padding: 1px 8px; font-size: 11px; color: var(--muted); }
.search-score { font-family: var(--font-head); font-size: 15px; font-weight: 900; padding: 2px 8px; border-radius: 2px; }
.search-empty { text-align: center; padding: 60px 0; color: var(--muted); font-size: 16px; }
.search-empty strong { color: #fff; }

/* Reviews category pills */
.reviews-cat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.rev-pill { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 5px 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; color: var(--muted); transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.rev-pill:hover { border-color: var(--blue); color: var(--blue); }
.rev-pill-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.rev-pill-count { background: rgba(255,255,255,0.2); font-size: 11px; padding: 1px 6px; border-radius: 10px; font-weight: 700; }
.reviews-hero-cat { font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); margin-bottom: 8px; }

/* ===== PROFILE PAGE ===== */
.profile-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }

.profile-header { background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 48px; padding: 36px; }
.profile-header-inner { display: flex; align-items: flex-start; gap: 28px; position: relative; }
.profile-avatar-wrap { flex-shrink: 0; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); }
.profile-info { flex: 1; min-width: 0; }
.profile-name { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 8px; }
.profile-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.profile-username { color: var(--muted); font-size: 13px; font-weight: 500; }
.profile-bio { color: #bbb; font-size: 14px; line-height: 1.6; max-width: 600px; margin-bottom: 18px; }
.profile-stats { display: flex; gap: 28px; }
.profile-stat { display: flex; flex-direction: column; gap: 1px; }
.profile-stat-num { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.profile-stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.profile-edit-btn { position: absolute; top: 0; right: 0; font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 7px 16px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); transition: all 0.2s; }
.profile-edit-btn:hover { border-color: var(--blue); color: var(--blue); }

.profile-body { display: flex; flex-direction: column; gap: 56px; }

.profile-section-title { font-family: var(--font-head); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: #fff; display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.profile-section-line { width: 4px; height: 22px; background: var(--red); border-radius: 2px; flex-shrink: 0; }
.profile-section-count { font-size: 13px; color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 4px; }

/* Profile article cards */
.profile-articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.profile-article-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.15s; }
.profile-article-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.pac-thumb { height: 160px; overflow: hidden; }
.pac-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.profile-article-card:hover .pac-thumb img { transform: scale(1.04); }
.pac-thumb-placeholder { height: 160px; background: var(--dark3); }
.pac-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pac-cat { font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--red); }
.pac-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; }
.pac-excerpt { font-size: 13px; color: #aaa; line-height: 1.5; flex: 1; }
.pac-date { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Profile review cards */
.profile-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.profile-review-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.15s; }
.profile-review-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.prc-thumb { height: 140px; overflow: hidden; position: relative; }
.prc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.profile-review-card:hover .prc-thumb img { transform: scale(1.04); }
.prc-thumb-placeholder { height: 140px; background: var(--dark3); position: relative; }
.prc-score { position: absolute; top: 8px; right: 8px; font-family: var(--font-head); font-size: 18px; font-weight: 900; padding: 3px 8px; border-radius: 4px; line-height: 1; }
.prc-score.score-must { background: var(--blue); color: #fff; }
.prc-score.score-good { background: var(--green); color: #fff; }
.prc-score.score-ok   { background: var(--orange); color: #fff; }
.prc-score.score-bad  { background: var(--red); color: #fff; }
.prc-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prc-cat { font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); }
.prc-platform { font-size: 11px; color: var(--muted); margin-left: 6px; }
.prc-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #fff; line-height: 1.2; }
.prc-sub { font-size: 12px; color: var(--muted); line-height: 1.4; flex: 1; }
.prc-date { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Author name link styles */
.author-name { color: #fff; transition: color 0.2s; font-weight: 600; }
.author-name:hover { color: var(--blue); }
.review-byline-link { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.review-byline-link:hover { color: #fff; }
.author-box-name { display: block; font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 4px; transition: color 0.2s; }
.author-box-name:hover { color: var(--blue); }

/* Profile empty state */
.profile-empty { text-align: center; padding: 80px 0; color: var(--muted); }
.profile-empty-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.profile-empty p { font-size: 16px; }

@media (max-width: 768px) {
  .profile-header-inner { flex-direction: column; align-items: center; text-align: center; }
  .profile-meta { justify-content: center; }
  .profile-stats { justify-content: center; }
  .profile-bio { text-align: center; }
  .profile-edit-btn { position: static; margin-top: 12px; }
  .profile-articles-grid { grid-template-columns: 1fr; }
  .profile-reviews-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* ===== SETTINGS PAGE ===== */
.settings-wrap { max-width: 640px; margin: 0 auto; padding: 48px 24px 80px; }
.settings-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.settings-title { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: #fff; }
.btn-outline { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 7px 16px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); transition: all 0.2s; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.settings-form { display: flex; flex-direction: column; gap: 22px; }
.settings-avatar-row { display: flex; align-items: center; gap: 20px; padding: 20px; background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; }
.settings-avatar-preview { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.settings-avatar-info { display: flex; flex-direction: column; gap: 6px; }
.settings-upload-btn { display: inline-block; font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 16px; background: var(--dark3); border: 1px solid var(--border); border-radius: 4px; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.settings-upload-btn:hover { border-color: var(--blue); color: var(--blue); }
.settings-avatar-hint { font-size: 12px; color: var(--muted); }

.settings-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.settings-field { display: flex; flex-direction: column; gap: 6px; }
.settings-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.settings-input { background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; padding: 10px 14px; color: #fff; font-size: 14px; transition: border-color 0.2s; outline: none; }
.settings-input:focus { border-color: var(--blue); }
.settings-input-disabled { opacity: 0.5; cursor: not-allowed; }
.settings-textarea { resize: vertical; min-height: 100px; }
.settings-hint { font-size: 12px; color: var(--muted); }

@media (max-width: 600px) {
  .settings-row { grid-template-columns: 1fr; }
  .settings-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== HEADER LOGO IMAGE ===== */
.header-logo-img { height: 44px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.logo-img-wrap   { display: flex; align-items: center; flex-shrink: 0; }
.footer-logo-img { height: 36px; width: auto; max-width: 180px; object-fit: contain; display: block; }

/* ===== RSS BUTTONS ===== */
.rss-nav-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: #f77f00; background: rgba(247,127,0,.08); border: 1px solid rgba(247,127,0,.25); border-radius: 4px; transition: all .15s; flex-shrink: 0; }
.rss-nav-btn:hover { background: rgba(247,127,0,.2); border-color: #f77f00; }

.footer-rss { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.footer-rss-link { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: #f77f00; opacity: 0.7; transition: opacity .15s; }
.footer-rss-link:hover { opacity: 1; }

.rss-subscribe-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(247,127,0,.1); border: 1px solid rgba(247,127,0,.35); border-radius: 4px; color: #f77f00; font-size: 13px; font-weight: 700; transition: all .15s; }
.rss-subscribe-btn:hover { background: rgba(247,127,0,.2); border-color: #f77f00; }

/* ===== ADVERTISING DISCLOSURE BANNER ===== */
.footer-adv-disclosure { background: rgba(247,37,133,.06); border-top: 1px solid rgba(247,37,133,.2); padding: 8px 0; }
.footer-adv-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.footer-adv-label { font-family: var(--font-head); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--red); white-space: nowrap; border: 1px solid rgba(247,37,133,.3); padding: 2px 6px; border-radius: 2px; flex-shrink: 0; }

/* ===== TEAM IMPROVEMENTS ===== */
.team-avatar-link { transition: opacity .15s, transform .15s; }
.team-avatar-link:hover { opacity: .85; transform: scale(1.04); }
.team-name-link { color: #fff; transition: color .15s; }
.team-name-link:hover { color: var(--blue); }

/* ===== STATS PAGE ===== */
.stats-wrap { max-width: 1140px; margin: 0 auto; padding: 48px 24px 80px; }

.stats-hero-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.stats-big-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 28px 24px; text-align: center; transition: border-color .2s, transform .15s; }
.stats-big-card:hover { border-color: var(--red); transform: translateY(-2px); }
.stats-big-num   { font-family: var(--font-head); font-size: 52px; font-weight: 900; color: var(--red); line-height: 1; letter-spacing: -1px; }
.stats-big-label { font-family: var(--font-head); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-top: 8px; }
.stats-big-sub   { font-size: 12px; color: var(--muted); margin-top: 4px; }

.stats-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.stats-section { margin-bottom: 32px; }
.stats-section-title { font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }

.stats-table { display: flex; flex-direction: column; gap: 10px; }
.stats-table-row { display: grid; grid-template-columns: 120px 1fr 48px; gap: 12px; align-items: center; }
.stats-table-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.stats-table-bar-wrap { height: 8px; background: var(--dark3); border-radius: 4px; overflow: hidden; }
.stats-table-bar { height: 100%; background: var(--red); border-radius: 4px; transition: width .8s ease; }
.stats-table-num { font-family: var(--font-head); font-size: 15px; font-weight: 900; color: #fff; text-align: right; }

.stats-kv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.stats-kv { display: flex; flex-direction: column; gap: 2px; padding: 14px 16px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.stats-kv:nth-child(even) { border-right: none; }
.stats-kv-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 700; }
.stats-kv-val { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #fff; }

.stats-recent-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.stats-recent-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 14px; background: var(--dark2); border: 1px solid var(--border); border-radius: 4px; font-size: 13px; transition: border-color .15s; }
.stats-recent-item:hover { border-color: var(--blue); }
.stats-recent-title { font-weight: 600; color: #fff; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stats-recent-date { font-size: 11px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.stats-recent-score { white-space: nowrap; flex-shrink: 0; }
.stats-see-all { font-size: 12px; font-weight: 700; color: var(--blue); transition: color .15s; }
.stats-see-all:hover { color: #fff; }

@media (max-width: 900px) {
  .stats-hero-row { grid-template-columns: repeat(2, 1fr); }
  .stats-two-col  { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .stats-hero-row { grid-template-columns: 1fr 1fr; }
  .stats-big-num  { font-size: 36px; }
}

/* ===== AD PLACEHOLDER ===== */
.ad-slot { display: block; background: var(--dark2); border: 1px dashed var(--border); border-radius: 4px; position: relative; overflow: hidden; }
.ad-slot::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,.02) 8px, rgba(255,255,255,.02) 10px); }
.ad-slot-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; height: 100%; padding: 12px; }
.ad-slot-label { font-family: var(--font-head); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--border); }
.ad-slot-size { font-size: 11px; color: var(--border); font-weight: 600; }

/* Ad slots with live placements - image dictates height, nothing crops */
.ad-slot.ad-slot-linked { height: auto; overflow: visible; border: none; background: transparent; }
.ad-slot.ad-slot-linked::before { display: none; }
.ad-image-link { display: block; position: absolute; inset: 0; z-index: 1; }
.ad-image { width: 100%; height: auto; display: block; border-radius: 4px; }
/* Attribution - small absolute label bottom-right, sits over the ad */
.ad-attribution { position: absolute; bottom: 6px; right: 8px; pointer-events: none; z-index: 2; }
.ad-attr-link { pointer-events: all; position: relative; z-index: 2; font-size: 9px; color: rgba(255,255,255,.7); text-decoration: none; background: rgba(0,0,0,.55); padding: 2px 6px; border-radius: 3px; letter-spacing: .2px; }
.ad-attr-link:hover { color: #fff; background: rgba(0,0,0,.8); }

/* Common ad sizes — use as: <div class="ad-slot ad-slot-728x90">...</div> */
.ad-slot-728x90  { width: 728px; max-width: 100%; height: 90px; }
.ad-slot-300x250 { width: 300px; height: 250px; }
.ad-slot-300x600 { width: 300px; height: 600px; }
.ad-slot-160x600 { width: 160px; height: 600px; }
.ad-slot-320x100 { width: 320px; max-width: 100%; height: 100px; }
.ad-slot-970x90   { width: 970px;  max-width: 100%; height: 90px; }
.ad-slot-1299x225 { width: 1299px; max-width: 100%; height: 225px; }
.ad-slot-full    { width: 100%; height: 90px; }

/* Admin language radio improvements */
.lang-radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-radio { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--muted); transition: all .15s; }
.lang-radio:hover { border-color: var(--blue); color: #fff; }
.lang-radio input { display: none; }
.lang-radio-active { border-color: var(--blue); background: rgba(67,97,238,.12); color: var(--blue); }

