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

:root {
  --clr-header: #252536;
  --clr-bg: #212132;
  --clr-gold: #ddc43a;
  --clr-red: #cd1935;
  --clr-text: #e8e8f0;
  --clr-text-muted: #a0a0b8;
  --clr-border: rgba(221,196,58,.18);
  --clr-card: #2a2a40;
  --clr-card2: #1e1e30;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition: .28s ease;
  --font-main: 'Mulish', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #f0d84a; }

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

.vvd-wrap { min-height: 100vh; display: flex; flex-direction: column; }

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

/* ===== HEADER ===== */
.vvd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.vvd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.vvd-header__logo a { display: flex; align-items: center; }
.vvd-header__logo img { height: 42px; width: auto; object-fit: contain; border-radius: var(--radius-sm); }

.vvd-header__nav { display: flex; align-items: center; gap: 4px; }
.vvd-header__nav a {
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.vvd-header__nav a:hover { background: rgba(221,196,58,.12); color: var(--clr-gold); }

.vvd-header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.vvd-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
  background: rgba(255,255,255,.05);
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.vvd-header__online-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: vvd-blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes vvd-blink { 0%,100%{opacity:1}50%{opacity:.35} }
.vvd-header__online-count { color: #22c55e; font-weight: 700; }

.vvd-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: none; cursor: pointer; font-family: var(--font-main); font-weight: 700; border-radius: var(--radius-sm); transition: transform var(--transition), box-shadow var(--transition), filter var(--transition); text-decoration: none; white-space: nowrap; }
.vvd-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.35); filter: brightness(1.08); }
.vvd-btn:active { transform: translateY(0); }

.vvd-btn--gold { background: var(--clr-gold); color: #1a1a28; font-size: 14px; padding: 9px 20px; }
.vvd-btn--red { background: var(--clr-red); color: #fff; font-size: 14px; padding: 9px 20px; }
.vvd-btn--lg { font-size: 16px; padding: 14px 32px; border-radius: var(--radius-md); }
.vvd-btn--sm { font-size: 13px; padding: 7px 16px; }

.vvd-burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 38px; height: 38px; cursor: pointer; background: none; border: none; padding: 4px; }
.vvd-burger span { display: block; width: 22px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.vvd-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vvd-burger.is-active span:nth-child(2) { opacity: 0; }
.vvd-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vvd-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--clr-header);
  padding: 16px 20px;
  border-top: 1px solid var(--clr-border);
}
.vvd-mobile-menu.is-open { display: flex; }
.vvd-mobile-menu a { color: var(--clr-text); font-size: 15px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--clr-border); }
.vvd-mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.vvd-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #252536 50%, #1a1a2e 100%);
}
.vvd-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .35;
}
.vvd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33,33,50,.95) 0%, rgba(33,33,50,.65) 60%, rgba(33,33,50,.2) 100%);
  z-index: 1;
}
.vvd-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.vvd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221,196,58,.15);
  border: 1px solid rgba(221,196,58,.3);
  color: var(--clr-gold);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.vvd-hero__badge-dot { width: 6px; height: 6px; background: var(--clr-gold); border-radius: 50%; }
.vvd-hero__title { font-size: clamp(28px,4.5vw,50px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.vvd-hero__title span { color: var(--clr-gold); }
.vvd-hero__desc { font-size: 17px; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 28px; max-width: 520px; }
.vvd-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.vvd-hero__bonus {
  display: inline-flex;
  flex-direction: column;
  margin-top: 28px;
  background: rgba(205,25,53,.1);
  border: 1px solid rgba(205,25,53,.25);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  gap: 2px;
}
.vvd-hero__bonus-label { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .08em; }
.vvd-hero__bonus-val { font-size: 22px; font-weight: 800; color: #fff; }
.vvd-hero__bonus-val span { color: var(--clr-gold); }

/* ===== BREADCRUMBS ===== */
.vvd-breadcrumbs { padding: 14px 0; }
.vvd-breadcrumbs__list { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; list-style: none; font-size: 13px; }
.vvd-breadcrumbs__list li { display: flex; align-items: center; gap: 6px; color: var(--clr-text-muted); }
.vvd-breadcrumbs__list li a { color: var(--clr-text-muted); }
.vvd-breadcrumbs__list li a:hover { color: var(--clr-gold); }
.vvd-breadcrumbs__list li.is-current { color: var(--clr-gold); }
.vvd-breadcrumbs__sep { color: rgba(160,160,184,.4); font-size: 11px; }

/* ===== SECTION ===== */
.vvd-section { padding: 52px 0; }
.vvd-section--sm { padding: 36px 0; }
.vvd-section__title { font-size: clamp(22px,3vw,32px); font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.25; }
.vvd-section__title span { color: var(--clr-gold); }
.vvd-section__sub { font-size: 15px; color: var(--clr-text-muted); margin-bottom: 36px; line-height: 1.55; }
.vvd-section__head { margin-bottom: 36px; }

/* ===== TABLE ===== */
.vvd-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--clr-border); }
.vvd-table { width: 100%; border-collapse: collapse; background: var(--clr-card); font-size: 14.5px; }
.vvd-table tr:not(:last-child) { border-bottom: 1px solid var(--clr-border); }
.vvd-table tr:hover td { background: rgba(221,196,58,.04); }
.vvd-table td { padding: 14px 20px; text-align: left; vertical-align: middle; color: var(--clr-text); }
.vvd-table td:first-child { color: var(--clr-text-muted); font-weight: 600; white-space: nowrap; width: 220px; background: rgba(0,0,0,.12); border-right: 1px solid var(--clr-border); }
.vvd-table-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(221,196,58,.12);
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(221,196,58,.2);
}
.vvd-table-badge--green { background: rgba(34,197,94,.1); color: #22c55e; border-color: rgba(34,197,94,.2); }

/* ===== ADVANTAGES ===== */
.vvd-adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 18px; }
.vvd-adv-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.vvd-adv-card:hover { transform: translateY(-3px); border-color: rgba(221,196,58,.35); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.vvd-adv-card__icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(221,196,58,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vvd-adv-card__icon svg { width: 26px; height: 26px; fill: var(--clr-gold); }
.vvd-adv-card__title { font-size: 16px; font-weight: 700; color: #fff; }
.vvd-adv-card__text { font-size: 14px; color: var(--clr-text-muted); line-height: 1.55; }

/* ===== PROS CONS ===== */
.vvd-procon { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vvd-procon__col { background: var(--clr-card); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--clr-border); }
.vvd-procon__head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 18px; font-weight: 800; color: #fff; }
.vvd-procon__head-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.vvd-procon__head-dot--green { background: #22c55e; }
.vvd-procon__head-dot--red { background: var(--clr-red); }
.vvd-procon__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.vvd-procon__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--clr-text); line-height: 1.5; }
.vvd-procon__list li::before { content: ''; display: block; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; margin-top: 2px; }
.vvd-procon__col--pros .vvd-procon__list li::before { background: rgba(34,197,94,.15); border: 2px solid #22c55e; }
.vvd-procon__col--cons .vvd-procon__list li::before { background: rgba(205,25,53,.12); border: 2px solid var(--clr-red); }

/* ===== VIDEO ===== */
.vvd-video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--clr-border);
}
.vvd-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ===== BONUSES ===== */
.vvd-bonuses { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vvd-bonus-card {
  background: linear-gradient(145deg, #2a2a40 0%, #1e1e30 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vvd-bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.vvd-bonus-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; background: radial-gradient(circle, rgba(221,196,58,.12) 0%, transparent 70%); border-radius: 50%; }
.vvd-bonus-card__tag { display: inline-flex; background: rgba(221,196,58,.12); color: var(--clr-gold); font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; border: 1px solid rgba(221,196,58,.2); width: fit-content; }
.vvd-bonus-card__val { font-size: 28px; font-weight: 800; color: #fff; line-height: 1.15; }
.vvd-bonus-card__val span { color: var(--clr-gold); }
.vvd-bonus-card__desc { font-size: 13.5px; color: var(--clr-text-muted); line-height: 1.55; flex: 1; }
.vvd-bonus-card__btn { display: inline-flex; align-items: center; justify-content: center; background: var(--clr-red); color: #fff; font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: var(--radius-sm); transition: filter var(--transition), transform var(--transition); text-decoration: none; }
.vvd-bonus-card__btn:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff; }

/* ===== GAMES ===== */
.vvd-games-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.vvd-game-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vvd-game-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.45); }
.vvd-game-card__img { width: 100%; height: 160px; object-fit: cover; }
.vvd-game-card__body { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vvd-game-card__provider { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-gold); font-weight: 700; }
.vvd-game-card__title { font-size: 15px; font-weight: 700; color: #fff; }
.vvd-game-card__btn { display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--clr-gold); color: #1a1a28; font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: var(--radius-sm); transition: filter var(--transition); margin-top: auto; text-decoration: none; }
.vvd-game-card__btn:hover { filter: brightness(1.08); color: #1a1a28; }

/* ===== SLIDER ===== */
.vvd-slider-wrap { position: relative; }
.vvd-slider { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.vvd-slider::-webkit-scrollbar { display: none; }
.vvd-slider > * { scroll-snap-align: center; flex: 0 0 100%; min-width: 0 !important; }
.vvd-slider-nav { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.vvd-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-text-muted); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); padding: 0; }
.vvd-slider-dot.is-active { background: var(--clr-gold); transform: scale(1.3); }

@media (min-width: 768px) {
  .vvd-slider { display: grid; gap: 22px; overflow: visible; scroll-snap-type: none; padding-bottom: 0; }
  .vvd-bonuses.vvd-slider { grid-template-columns: repeat(3, 1fr); }
  .vvd-games-grid.vvd-slider { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .vvd-slider > * { min-width: 0 !important; flex-shrink: 1; scroll-snap-align: none; }
  .vvd-slider-nav { display: none; }
}

/* ===== CONTENT REVIEW ===== */
.vvd-review { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; }
.vvd-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--clr-border);
  background: rgba(0,0,0,.15);
}
.vvd-review__author-avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--clr-gold); object-fit: cover; flex-shrink: 0; background: var(--clr-card2); }
.vvd-review__author-info { display: flex; flex-direction: column; gap: 2px; }
.vvd-review__author-name { font-size: 15px; font-weight: 700; color: #fff; }
.vvd-review__author-role { font-size: 13px; color: var(--clr-text-muted); }
.vvd-review__author-link { font-size: 13px; color: var(--clr-gold); }
.vvd-review__body { padding: 28px 28px; }

.vvd-review__body h1, .vvd-review__body h2, .vvd-review__body h3, .vvd-review__body h4 { color: #fff; font-weight: 800; margin: 0 0 14px; line-height: 1.3; }
.vvd-review__body h2 { font-size: 22px; margin-top: 28px; }
.vvd-review__body h3 { font-size: 18px; margin-top: 22px; }
.vvd-review__body h4 { font-size: 16px; margin-top: 18px; }
.vvd-review__body p { color: var(--clr-text); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.vvd-review__body ul, .vvd-review__body ol { color: var(--clr-text); font-size: 15px; line-height: 1.7; margin-bottom: 16px; padding-left: 24px; }
.vvd-review__body li { margin-bottom: 6px; }
.vvd-review__body a { color: var(--clr-gold); }
.vvd-review__body strong { color: #fff; font-weight: 700; }
.vvd-review__body em { color: var(--clr-gold); font-style: normal; font-weight: 600; }
.vvd-review__body table { width: 100%; border-collapse: collapse; margin: 20px 0; border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; }
.vvd-review__body th { background: rgba(221,196,58,.1); color: var(--clr-gold); font-weight: 700; padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--clr-border); }
.vvd-review__body td { padding: 10px 16px; border-bottom: 1px solid var(--clr-border); color: var(--clr-text); }
.vvd-review__body tr:last-child td { border-bottom: none; }
.vvd-review__body blockquote { background: rgba(221,196,58,.07); border-left: 3px solid var(--clr-gold); padding: 16px 20px; margin: 20px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.vvd-review__body blockquote p { margin: 0; color: var(--clr-text); font-style: italic; }
.vvd-review__body hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }
.vvd-review__body img { border-radius: var(--radius-md); max-width: 100%; height: auto; }

/* ===== FAQ ===== */
.vvd-faq { display: flex; flex-direction: column; gap: 12px; }
.vvd-faq__item { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition); }
.vvd-faq__item.is-open { border-color: rgba(221,196,58,.35); }
.vvd-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; font-size: 16px; font-weight: 700; color: #fff; user-select: none; }
.vvd-faq__q:hover { color: var(--clr-gold); }
.vvd-faq__icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(221,196,58,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--transition); }
.vvd-faq__item.is-open .vvd-faq__icon { transform: rotate(45deg); background: rgba(221,196,58,.22); }
.vvd-faq__icon::before { content: '+'; color: var(--clr-gold); font-size: 18px; line-height: 1; font-weight: 400; }
.vvd-faq__a { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .28s ease; padding: 0 22px; }
.vvd-faq__a-inner { padding-bottom: 18px; font-size: 14.5px; color: var(--clr-text-muted); line-height: 1.65; }
.vvd-faq__item.is-open .vvd-faq__a { max-height: 500px; padding: 0 22px; }

/* ===== FOOTER ===== */
.vvd-footer { background: var(--clr-header); border-top: 1px solid var(--clr-border); margin-top: auto; padding: 48px 0 0; }
.vvd-footer__top { display: grid; grid-template-columns: 220px 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--clr-border); }
.vvd-footer__brand img { height: 38px; width: auto; object-fit: contain; border-radius: var(--radius-sm); margin-bottom: 16px; }
.vvd-footer__brand p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; }
.vvd-footer__col-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-gold); margin-bottom: 16px; }
.vvd-footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.vvd-footer__links a { font-size: 14px; color: var(--clr-text-muted); transition: color var(--transition); }
.vvd-footer__links a:hover { color: var(--clr-text); }
.vvd-footer__logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 8px; }
.vvd-footer__logo-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.vvd-footer__bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.vvd-footer__copy { font-size: 12.5px; color: var(--clr-text-muted); line-height: 1.55; }
.vvd-footer__copy a { color: var(--clr-text-muted); }
.vvd-footer__legal { font-size: 11.5px; color: rgba(160,160,184,.5); line-height: 1.55; max-width: 520px; text-align: right; }

/* ===== WIDGET ===== */
.vvd-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1e1e30 0%, #252536 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(0,0,0,.55);
}
.vvd-widget__text { display: flex; flex-direction: column; gap: 2px; }
.vvd-widget__label { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--clr-text-muted); font-weight: 700; }
.vvd-widget__val { font-size: 18px; font-weight: 800; color: #fff; }
.vvd-widget__val span { color: var(--clr-gold); }
.vvd-widget__close { background: none; border: none; cursor: pointer; color: var(--clr-text-muted); font-size: 20px; line-height: 1; padding: 4px; display: flex; align-items: center; justify-content: center; transition: color var(--transition); flex-shrink: 0; }
.vvd-widget__close:hover { color: var(--clr-text); }
.vvd-widget__actions { display: flex; gap: 10px; flex-shrink: 0; }
.vvd-widget a { text-decoration: none; }

/* ===== DIVIDER ===== */
.vvd-divider { height: 1px; background: var(--clr-border); margin: 0; }

/* ===== UNUSED / WP spoof ===== */
.wp-block-group, .wp-block-columns, .elementor-widget-container { display: contents; }
.entry-content, .post-content, .the-content { display: contents; }
.screen-reader-text { position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; overflow: hidden; white-space: nowrap; }
.skip-link { position: absolute; top: -40px; left: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .vvd-bonuses { grid-template-columns: repeat(2,1fr); }
  .vvd-games-grid { grid-template-columns: repeat(2,1fr); }
  .vvd-footer__top { grid-template-columns: 1fr 1fr; }
  .vvd-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .vvd-header__nav { display: none; }
  .vvd-header__online { display: none; }
  .vvd-burger { display: flex; }
  .vvd-hero { min-height: 420px; }
  .vvd-hero__content { padding: 40px 0; }
  .vvd-procon { grid-template-columns: 1fr; }
  .vvd-bonuses { grid-template-columns: 1fr; }
  .vvd-games-grid { grid-template-columns: repeat(2,1fr); }
  .vvd-footer__top { grid-template-columns: 1fr; gap: 24px; }
  .vvd-footer__bottom { flex-direction: column; text-align: center; }
  .vvd-footer__legal { text-align: center; }
  .vvd-widget { flex-wrap: wrap; }
  .vvd-widget__actions { width: 100%; }
  .vvd-widget__actions a { flex: 1; text-align: center; }
  .vvd-adv-grid { grid-template-columns: 1fr 1fr; }
  .vvd-table td:first-child { width: 160px; }
}

@media (max-width: 540px) {
  .vvd-games-grid { grid-template-columns: 1fr; }
  .vvd-adv-grid { grid-template-columns: 1fr; }
  .vvd-hero__actions { flex-direction: column; }
  .vvd-btn--lg { width: 100%; }
  .vvd-bonuses { grid-template-columns: 1fr; }
  .vvd-review__body { padding: 18px 16px; }
}

/* ===== ANIMATIONS ===== */
@keyframes vvd-fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes vvd-fadeIn { from { opacity: 0; } to { opacity: 1; } }

.vvd-anim-up { animation: vvd-fadeInUp .6s ease both; }
.vvd-anim-up-d1 { animation-delay: .1s; }
.vvd-anim-up-d2 { animation-delay: .2s; }
.vvd-anim-up-d3 { animation-delay: .3s; }

[data-anim] { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
[data-anim].vvd-visible { opacity: 1; transform: translateY(0); }

/* Unused placeholder styles for CMS fingerprinting */
.wpcf7-form-control-wrap { position: relative; }
.woocommerce-page .entry-header { display: block; }
.elementor-section-wrap .elementor-container { max-width: 1200px; }
.et_pb_section { padding: 40px 0; }
.fl-builder-content .fl-row { position: relative; }
.vc_row { margin-left: -15px; margin-right: -15px; }
.fusion-builder-row { display: flex; flex-wrap: wrap; }
#wpadminbar { display: none !important; }
