@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --av-bg: #0e0e0e;
  --av-header: #1b1c1d;
  --av-red: #e50539;
  --av-red-hover: #c40430;
  --av-green: #28a909;
  --av-green-hover: #1f8a07;
  --av-text: #e8e8e8;
  --av-text-muted: #9a9a9a;
  --av-border: #2a2a2a;
  --av-card: #181819;
  --av-card2: #1e1f20;
  --av-accent: #ff6b35;
  --av-radius: 10px;
  --av-radius-lg: 16px;
  --av-shadow: 0 4px 24px rgba(0,0,0,0.5);
  --av-transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--av-bg);
  color: var(--av-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--av-red); text-decoration: none; transition: color var(--av-transition); }
a:hover { color: var(--av-red-hover); }

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

.xq7f2-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.xq7f2-main { flex: 1; }

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

.av-section { padding: 60px 0; }
.av-section-sm { padding: 36px 0; }

.av-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--av-text);
  margin-bottom: 28px;
  position: relative;
  padding-left: 16px;
}
.av-section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 70%;
  background: var(--av-red);
  border-radius: 2px;
}

.av-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--av-radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--av-transition);
  text-decoration: none;
  white-space: nowrap;
}
.av-btn-red {
  background: var(--av-red);
  color: #fff;
}
.av-btn-red:hover {
  background: var(--av-red-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229,5,57,0.4);
}
.av-btn-green {
  background: var(--av-green);
  color: #fff;
}
.av-btn-green:hover {
  background: var(--av-green-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(40,169,9,0.4);
}
.av-btn-outline {
  background: transparent;
  color: var(--av-text);
  border: 1px solid var(--av-border);
}
.av-btn-outline:hover {
  border-color: var(--av-red);
  color: var(--av-red);
  transform: translateY(-1px);
}
.av-btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.av-btn-lg { padding: 14px 32px; font-size: 1rem; }

.av-card {
  background: var(--av-card);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 24px;
}

.av-stars {
  display: inline-flex;
  gap: 2px;
  color: #ccc;
  font-size: 1.1rem;
}
.av-stars .filled { color: #f5a623; }
.av-stars .half { color: #f5a623; opacity: 0.6; }

.av-header {
  background: var(--av-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.av-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}

.av-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.av-logo img {
  height: 36px;
  width: auto;
}
.av-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.av-logo-text span { color: var(--av-red); }

.av-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 10px;
}

.av-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #b0b0b0;
  text-decoration: none;
  transition: all var(--av-transition);
  white-space: nowrap;
}
.av-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.av-nav a svg { width: 15px; height: 15px; opacity: 0.75; }

.av-header-review-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--av-text-muted);
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid var(--av-border);
}
.av-header-review-count strong { color: #fff; font-weight: 700; }

.av-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.av-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
}
.av-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--av-transition);
}
.av-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.av-burger.open span:nth-child(2) { opacity: 0; }
.av-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.av-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--av-header);
  border-top: 1px solid var(--av-border);
  padding: 12px 20px 20px;
  gap: 4px;
}
.av-mobile-nav.open { display: flex; }
.av-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #c0c0c0;
  text-decoration: none;
  transition: all var(--av-transition);
}
.av-mobile-nav a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.av-mobile-nav svg { width: 16px; height: 16px; }

.av-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.av-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/banner-hr.png');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.av-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.6) 60%, rgba(14,14,14,0.85) 100%);
}

.av-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0;
}

.av-hero-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.av-hero-tile {
  background: rgba(24,24,25,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--av-radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  flex: 0 0 300px;
}

.av-hero-tile-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.av-hero-tile-logo img { height: 48px; width: auto; }
.av-hero-tile-logo-text { font-size: 1.3rem; font-weight: 700; color: #fff; }
.av-hero-tile-logo-sub { font-size: 0.78rem; color: var(--av-text-muted); }

.av-hero-overall-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.av-hero-score-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #f5a623;
  line-height: 1;
}
.av-hero-score-max { font-size: 1rem; color: var(--av-text-muted); }

.av-hero-bonus {
  margin: 14px 0;
  padding: 10px 14px;
  background: rgba(40,169,9,0.15);
  border: 1px solid rgba(40,169,9,0.3);
  border-radius: 8px;
  font-size: 0.82rem;
  color: #5cd63e;
}
.av-hero-bonus strong { font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 2px; }

.av-hero-tile-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.av-hero-tile-actions .av-btn { width: 100%; justify-content: center; }

.av-hero-ratings-block {
  flex: 0 0 260px;
  background: rgba(24,24,25,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--av-radius-lg);
  padding: 22px 20px;
  backdrop-filter: blur(12px);
}
.av-hero-ratings-block h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--av-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.av-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.av-rating-row-stars { display: flex; gap: 2px; font-size: 0.85rem; flex-shrink: 0; }
.av-rating-row-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.av-rating-bar-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.av-rating-bar-1 { background: #e53535; }
.av-rating-bar-2 { background: #e5813c; }
.av-rating-bar-3 { background: #e5c83c; }
.av-rating-bar-4 { background: #a0d435; }
.av-rating-bar-5 { background: #28a909; }
.av-rating-row-count { font-size: 0.78rem; color: var(--av-text-muted); flex-shrink: 0; min-width: 20px; text-align: right; }

.av-hero-params-block {
  flex: 1;
  min-width: 260px;
  background: rgba(24,24,25,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--av-radius-lg);
  padding: 22px 20px;
  backdrop-filter: blur(12px);
}
.av-hero-params-block h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--av-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.av-param-overall {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--av-border);
}
.av-param-overall-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f5a623;
}
.av-param-overall-label { font-size: 0.82rem; color: var(--av-text-muted); }

.av-param-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.av-param-item { }
.av-param-item-label { font-size: 0.75rem; color: var(--av-text-muted); margin-bottom: 4px; }
.av-param-item-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin-bottom: 3px; }
.av-param-item-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--av-red), #ff6b35); }
.av-param-item-score { font-size: 0.78rem; color: var(--av-text); font-weight: 600; }

.av-info-tile {
  background: var(--av-card);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 24px;
  margin-top: 24px;
}
.av-info-tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.av-info-tile-header h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.av-info-btn { font-size: 0.8rem; color: var(--av-red); cursor: pointer; background: none; border: none; }
.av-info-btn:hover { color: var(--av-red-hover); }

.av-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }

.av-info-item { padding: 12px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--av-border); border-radius: 8px; }
.av-info-item-label { font-size: 0.72rem; color: var(--av-text-muted); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 5px; }
.av-info-item-value { font-size: 0.88rem; font-weight: 600; color: var(--av-text); }

.av-info-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.av-info-logos img { height: 22px; width: auto; filter: grayscale(30%) brightness(0.9); transition: filter var(--av-transition); }
.av-info-logos img:hover { filter: none; }
.av-info-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--av-border);
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--av-text-muted);
  font-weight: 600;
}

.av-spoiler { margin-top: 12px; }
.av-spoiler-btn {
  background: none;
  border: 1px solid var(--av-border);
  color: var(--av-text-muted);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--av-transition);
}
.av-spoiler-btn:hover { border-color: var(--av-red); color: var(--av-red); }
.av-spoiler-content { display: none; margin-top: 14px; }
.av-spoiler-content.open { display: block; }

.av-toc {
  background: var(--av-card);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  overflow: hidden;
}
.av-toc-title {
  padding: 16px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--av-text-muted);
  border-bottom: 1px solid var(--av-border);
}
.av-toc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 18px;
  gap: 8px;
}
.av-toc-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--av-text-muted);
  border: 1px solid var(--av-border);
  text-decoration: none;
  transition: all var(--av-transition);
  background: rgba(255,255,255,0.02);
}
.av-toc-tab:hover, .av-toc-tab.active {
  background: rgba(229,5,57,0.1);
  border-color: rgba(229,5,57,0.4);
  color: #fff;
}
.av-toc-tab svg { width: 14px; height: 14px; }

.av-review-form-wrap {
  background: var(--av-card);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 32px;
}

.av-form { display: flex; flex-direction: column; gap: 18px; }
.av-form-group { display: flex; flex-direction: column; gap: 6px; }
.av-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.av-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--av-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.av-form input,
.av-form textarea,
.av-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--av-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--av-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--av-transition);
  outline: none;
  width: 100%;
}
.av-form input::placeholder,
.av-form textarea::placeholder { color: var(--av-text-muted); }
.av-form input:focus,
.av-form textarea:focus { border-color: var(--av-red); }
.av-form textarea { resize: vertical; min-height: 100px; }

.av-star-rating { display: flex; gap: 4px; flex-direction: row-reverse; justify-content: flex-end; }
.av-star-rating input { display: none; }
.av-star-rating label {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.15);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--av-transition);
}
.av-star-rating label:hover,
.av-star-rating label:hover ~ label,
.av-star-rating input:checked ~ label { color: #f5a623; }

.av-form-ratings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.av-form-rating-item label { display: flex; flex-direction: column; gap: 6px; text-transform: none; }
.av-form-rating-item .av-star-rating label { font-size: 1.2rem; }

.av-form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(40,169,9,0.12);
  border: 1px solid rgba(40,169,9,0.3);
  border-radius: 10px;
  color: #5cd63e;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}
.av-form-success.show { display: block; }

.av-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

.av-review-card {
  background: var(--av-card);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 22px;
  transition: border-color var(--av-transition), transform var(--av-transition);
  position: relative;
}
.av-review-card:hover {
  border-color: rgba(229,5,57,0.3);
  transform: translateY(-2px);
}

.av-review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.av-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--av-border);
}
.av-review-meta { flex: 1; min-width: 0; }
.av-review-author { font-size: 0.9rem; font-weight: 700; color: #fff; display: block; margin-bottom: 2px; }
.av-review-country {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--av-text-muted);
}
.av-review-country .av-flag {
  width: 16px;
  height: 12px;
  background: linear-gradient(180deg, #00AFCA 0%, #00AFCA 33%, #FFDF00 33%, #FFDF00 66%, #00AFCA 66%);
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0;
}
.av-review-date { font-size: 0.75rem; color: var(--av-text-muted); display: block; margin-top: 2px; }

.av-review-rating-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.av-review-rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
.av-badge-5 { background: #28a909; }
.av-badge-4 { background: #7bc614; }
.av-badge-3 { background: #e5c83c; color: #222; }
.av-badge-2 { background: #e5813c; }
.av-badge-1, .av-badge-0 { background: #e53535; }

.av-review-rating-details-btn {
  font-size: 0.7rem;
  color: var(--av-red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.av-review-rating-details-btn:hover { color: var(--av-red-hover); }

.av-review-rating-details {
  display: none;
  margin-bottom: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--av-border);
  border-radius: 8px;
}
.av-review-rating-details.open { display: block; }
.av-review-rating-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.78rem;
}
.av-review-rating-detail-row:last-child { margin-bottom: 0; }
.av-review-rating-detail-label { color: var(--av-text-muted); flex: 1; }
.av-review-rating-detail-bar { flex: 0 0 80px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.av-review-rating-detail-fill { height: 100%; border-radius: 2px; background: #f5a623; }
.av-review-rating-detail-val { color: var(--av-text); font-weight: 600; min-width: 20px; text-align: right; }

.av-review-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }

.av-review-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--av-text-muted);
  margin-bottom: 10px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid var(--av-border);
}
.av-review-source a { color: var(--av-red); font-size: 0.72rem; }

.av-review-body { position: relative; margin-bottom: 14px; }
.av-review-text { font-size: 0.875rem; color: #c8c8c8; line-height: 1.65; }
.av-review-text-truncated .av-review-text-full { display: none; }
.av-review-text-truncated .av-review-text-short { display: inline; }
.av-review-text-expanded .av-review-text-short { display: none; }
.av-review-text-expanded .av-review-text-full { display: inline; }
.av-review-expand-btn {
  background: none;
  border: none;
  color: var(--av-red);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 4px 0;
  margin-top: 4px;
  display: block;
}
.av-review-expand-btn:hover { color: var(--av-red-hover); }

.av-review-pros-cons { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.av-review-pros, .av-review-cons { flex: 1; min-width: 120px; }
.av-review-pros h5, .av-review-cons h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.av-review-pros h5 { color: var(--av-green); }
.av-review-cons h5 { color: var(--av-red); }
.av-review-pros ul, .av-review-cons ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.av-review-pros li, .av-review-cons li { font-size: 0.78rem; color: #b8b8b8; display: flex; align-items: flex-start; gap: 4px; }
.av-review-pros li::before { content: '+'; color: var(--av-green); font-weight: 700; flex-shrink: 0; }
.av-review-cons li::before { content: '−'; color: var(--av-red); font-weight: 700; flex-shrink: 0; }

.av-review-media { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.av-review-media-thumb {
  width: 72px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--av-border);
  cursor: pointer;
}

.av-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--av-border);
  gap: 10px;
}
.av-review-votes { display: flex; gap: 8px; }
.av-vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  border: 1px solid var(--av-border);
  background: rgba(255,255,255,0.03);
  color: var(--av-text-muted);
  transition: all var(--av-transition);
}
.av-like-btn:hover { border-color: var(--av-green); color: var(--av-green); }
.av-dislike-btn:hover { border-color: var(--av-red); color: var(--av-red); }
.av-vote-btn.voted-like { border-color: var(--av-green); color: var(--av-green); background: rgba(40,169,9,0.1); }
.av-vote-btn.voted-dislike { border-color: var(--av-red); color: var(--av-red); background: rgba(229,5,57,0.1); }

.av-reply-btn {
  font-size: 0.8rem;
  color: var(--av-text-muted);
  cursor: pointer;
  background: none;
  border: 1px solid var(--av-border);
  border-radius: 6px;
  padding: 5px 12px;
  transition: all var(--av-transition);
}
.av-reply-btn:hover { border-color: var(--av-red); color: var(--av-red); }

.av-reply-form {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--av-border);
}
.av-reply-form.open { display: block; }
.av-reply-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--av-border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--av-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  resize: vertical;
  min-height: 70px;
  outline: none;
  transition: border-color var(--av-transition);
}
.av-reply-form textarea:focus { border-color: var(--av-red); }
.av-reply-form-actions { display: flex; gap: 8px; margin-top: 8px; }

.av-bonus-banner {
  background: linear-gradient(135deg, rgba(40,169,9,0.15) 0%, rgba(14,14,14,0.8) 100%);
  border: 1px solid rgba(40,169,9,0.3);
  border-radius: var(--av-radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.av-bonus-banner-text h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.av-bonus-banner-text p { font-size: 0.85rem; color: var(--av-text-muted); }

.av-comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.av-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  min-width: 600px;
}
.av-comparison-table th {
  background: var(--av-card2);
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--av-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 2px solid var(--av-border);
}
.av-comparison-table th:first-child { border-radius: 10px 0 0 0; }
.av-comparison-table th:last-child { border-radius: 0 10px 0 0; }
.av-comparison-table td {
  padding: 14px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--av-border);
  color: var(--av-text);
  vertical-align: middle;
  background: var(--av-card);
}
.av-comparison-table tr:last-child td { border-bottom: none; }
.av-comparison-table td.av-highlight { background: rgba(229,5,57,0.05); border-left: 2px solid var(--av-red); }
.av-comparison-table .av-score-cell { font-weight: 700; color: #f5a623; }
.av-comparison-table .av-btn { font-size: 0.78rem; padding: 6px 14px; }
.av-check { color: var(--av-green); font-weight: 700; }
.av-cross { color: var(--av-red); }

.av-video-block { }
.av-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--av-radius-lg);
  overflow: hidden;
  border: 1px solid var(--av-border);
}
.av-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.av-content-block {
  background: var(--av-card);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 32px;
}

.av-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--av-border);
  border-radius: 10px;
  margin-bottom: 28px;
}
.av-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--av-border);
  flex-shrink: 0;
}
.av-author-info { flex: 1; }
.av-author-name { font-size: 0.9rem; font-weight: 700; color: #fff; display: block; margin-bottom: 2px; }
.av-author-desc { font-size: 0.78rem; color: var(--av-text-muted); line-height: 1.5; }
.av-author-links { display: flex; gap: 10px; margin-top: 6px; }
.av-author-links a { font-size: 0.75rem; color: var(--av-red); }

.av-content-inner { font-size: 0.9rem; line-height: 1.75; color: #c8c8c8; }
.av-content-inner h1, .av-content-inner h2, .av-content-inner h3, .av-content-inner h4, .av-content-inner h5, .av-content-inner h6 {
  color: #fff;
  margin: 24px 0 12px;
  font-weight: 700;
  line-height: 1.3;
}
.av-content-inner h2 { font-size: 1.35rem; }
.av-content-inner h3 { font-size: 1.1rem; }
.av-content-inner h4 { font-size: 0.95rem; }
.av-content-inner p { margin-bottom: 14px; }
.av-content-inner ul, .av-content-inner ol { margin: 12px 0 14px 20px; display: flex; flex-direction: column; gap: 6px; }
.av-content-inner ul li { list-style: disc; }
.av-content-inner ol li { list-style: decimal; }
.av-content-inner li { color: #c8c8c8; font-size: 0.875rem; line-height: 1.6; }
.av-content-inner a { color: var(--av-red); }
.av-content-inner strong { color: #fff; font-weight: 700; }
.av-content-inner em { color: #e0e0e0; }
.av-content-inner blockquote {
  border-left: 3px solid var(--av-red);
  margin: 16px 0;
  padding: 12px 18px;
  background: rgba(229,5,57,0.05);
  border-radius: 0 8px 8px 0;
  color: #bbb;
  font-style: italic;
}
.av-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px auto;
  font-size: 0.85rem;
}
.av-content-inner table th {
  background: var(--av-card2);
  padding: 10px 14px;
  text-align: left;
  color: var(--av-text-muted);
  font-weight: 600;
  border: 1px solid var(--av-border);
}
.av-content-inner table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--av-border);
  color: var(--av-text);
}
.av-content-inner table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.av-content-inner img { border-radius: 8px; margin: 16px 0; max-width: 100%; }
.av-content-inner hr { border: none; border-top: 1px solid var(--av-border); margin: 24px 0; }
.av-content-inner code {
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85em;
  color: #f5a623;
}
.av-content-inner pre {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--av-border);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin: 14px 0;
}
.av-content-inner pre code { background: none; padding: 0; color: inherit; }

.av-footer {
  background: var(--av-header);
  border-top: 1px solid var(--av-border);
  padding: 40px 0 24px;
  margin-top: auto;
}

.av-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.av-footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--av-text-muted);
  margin-bottom: 14px;
}
.av-footer-links { display: flex; flex-direction: column; gap: 8px; }
.av-footer-links a {
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
  transition: color var(--av-transition);
}
.av-footer-links a:hover { color: var(--av-text); }

.av-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.av-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #888;
  transition: color var(--av-transition);
}
.av-trust-badge:hover { color: #ccc; }

.av-footer-bottom {
  border-top: 1px solid var(--av-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.av-footer-copyright { font-size: 0.78rem; color: var(--av-text-muted); line-height: 1.5; }
.av-footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.av-footer-legal a { font-size: 0.75rem; color: #666; }
.av-footer-legal a:hover { color: var(--av-text-muted); }

.av-gambling-warning {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(229,5,57,0.05);
  border: 1px solid rgba(229,5,57,0.1);
  border-radius: 8px;
  font-size: 0.72rem;
  color: #666;
  line-height: 1.5;
}

.av-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--av-header);
  border-top: 1px solid var(--av-border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.av-widget-text { font-size: 0.88rem; color: var(--av-text); font-weight: 500; }
.av-widget-text span { color: #f5a623; font-weight: 700; }
.av-widget-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--av-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
}
.av-widget-close:hover { color: #fff; }

.av-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.av-modal-overlay.open { display: flex; }
.av-modal {
  background: var(--av-card2);
  border: 1px solid var(--av-border);
  border-radius: var(--av-radius-lg);
  padding: 32px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.av-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 6px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--av-text-muted);
  font-size: 1.1rem;
  transition: all var(--av-transition);
}
.av-modal-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

@keyframes av-fade-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes av-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes av-plane-fly { 0% { transform: translateX(-10px) rotate(-5deg); } 50% { transform: translateX(5px) rotate(3deg); } 100% { transform: translateX(-10px) rotate(-5deg); } }

.av-animate-in { animation: av-fade-in 0.5s ease forwards; }
.av-stagger > * { opacity: 0; animation: av-fade-in 0.4s ease forwards; }
.av-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.av-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.av-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.av-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.av-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.av-stagger > *:nth-child(6) { animation-delay: 0.6s; }

.av-plane-anim { animation: av-plane-fly 3s ease-in-out infinite; }

.wp-caption-text { font-size: 0.8em; color: var(--av-text-muted); text-align: center; }
.aligncenter { display: block; margin: 0 auto; }
.wp-block-separator { border-top: 1px solid var(--av-border); margin: 24px 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.entry-content { color: var(--av-text); }
.post-thumbnail { border-radius: var(--av-radius); overflow: hidden; }
.wp-block-image { margin: 16px 0; }
.has-text-align-center { text-align: center; }
.wp-element-caption { font-size: 0.8rem; color: var(--av-text-muted); }
.elementor-widget-container { position: relative; }
.e-con-inner { display: flex; flex-direction: column; gap: 10px; }
.elementor-column { flex: 1; }
.elementor-section { padding: 30px 0; }
#wpadminbar { display: none !important; }
.yoast-breadcrumb { font-size: 0.8rem; color: var(--av-text-muted); }

@media (max-width: 960px) {
  .av-nav { display: none; }
  .av-header-review-count { display: none; }
  .av-burger { display: flex; }
  .av-footer-grid { grid-template-columns: 1fr 1fr; }
  .av-hero-grid { flex-direction: column; }
  .av-hero-tile, .av-hero-ratings-block, .av-hero-params-block { flex: none; width: 100%; }
  .av-btn-red{ display: none; }
  .av-header-actions {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .av-section { padding: 40px 0; }
  .av-section-title { font-size: 1.3rem; }
  .av-form-row { grid-template-columns: 1fr; }
  .av-reviews-grid { grid-template-columns: 1fr; }
  .av-footer-grid { grid-template-columns: 1fr; }
  .av-hero { min-height: 340px; }
  .av-hero-score-num { font-size: 1.8rem; }
  .av-param-items { grid-template-columns: 1fr; }
  .av-content-block { padding: 20px; }
  .av-review-form-wrap { padding: 20px; }
  .av-footer-bottom { flex-direction: column; text-align: center; }
  .av-widget { padding: 10px 40px 10px 16px; }
  .av-bonus-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .av-container { padding: 0 12px; }
  .av-header-inner { gap: 10px; }
  .av-hero-tile { padding: 16px; }
}
