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

:root {
  --c-bg: #060D43;
  --c-bg2: #0a1255;
  --c-bg3: #0e1870;
  --c-primary: #035669;
  --c-primary-h: #046882;
  --c-secondary: #060D43;
  --c-secondary-h: #0a1460;
  --c-accent: #00c9ff;
  --c-accent2: #e8b34b;
  --c-text: #e8eaf6;
  --c-text-muted: #8892c8;
  --c-text-dark: #1a1a2e;
  --c-white: #ffffff;
  --c-border: rgba(255,255,255,0.1);
  --c-card: rgba(255,255,255,0.04);
  --c-card-h: rgba(255,255,255,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
  --transition: 0.25s ease;
  --font: 'Nunito', 'AvenirLT-Roman', 'Avenir Next', Avenir, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--c-bg); }

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent2); }

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

.x7f2a, .q9w3r, .m4t8u { display: none; }

.hw-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

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

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

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

.hw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.hw-header__logo img {
  height: 44px;
  width: auto;
}

.hw-header__nav { display: flex; align-items: center; gap: 4px; }

.hw-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.hw-nav__link:hover {
  background: var(--c-card);
  color: var(--c-accent);
}

.hw-nav__link svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.hw-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.hw-online__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: hw-pulse 1.6s infinite;
  flex-shrink: 0;
}

@keyframes hw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hw-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.hw-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hw-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hw-burger.is-active span:nth-child(2) { opacity: 0; }
.hw-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hw-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px 20px;
  gap: 4px;
}

.hw-mobile-menu.is-active { display: flex; }

.hw-mobile-menu .hw-nav__link {
  font-size: 0.95rem;
  padding: 10px 12px;
}

.hw-mobile-menu__actions {
  display: none;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.hw-mobile-menu__actions .btn { flex: 1; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 0.875rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 2px 12px rgba(3,86,105,0.5);
}

.btn-primary:hover {
  background: var(--c-primary-h);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(3,86,105,0.7);
}

.btn-secondary {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn-secondary:hover {
  background: var(--c-card);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.25);
}

.btn-accent {
  background: linear-gradient(135deg, var(--c-accent2), #f4a020);
  color: var(--c-text-dark);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(232,179,75,0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,179,75,0.6);
  color: var(--c-text-dark);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 42px; font-size: 1.125rem; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }

/* ===================== HERO ===================== */
.hw-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg2);
}

.hw-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/hero-banner.png') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6,13,67,0.97) 30%, rgba(3,86,105,0.6) 100%);
  z-index: 1;
}

.hw-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,179,75,0.15);
  border: 1px solid rgba(232,179,75,0.35);
  color: var(--c-accent2);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hw-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-white);
  margin-bottom: 16px;
}

.hw-hero__title span { color: var(--c-accent); }

.hw-hero__subtitle {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 540px;
}

.hw-hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: var(--c-text);
}

.hw-hero__bonus strong { color: var(--c-accent2); font-size: 1.1rem; }

.hw-hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hw-hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.hw-hero__trust svg { color: #22c55e; width: 14px; height: 14px; }

/* ===================== BREADCRUMBS ===================== */
.hw-breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  background: rgba(255,255,255,0.02);
}

.hw-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.hw-breadcrumbs__list li { display: flex; align-items: center; gap: 8px; }

.hw-breadcrumbs__list li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-top: 1.5px solid var(--c-text-muted);
  border-right: 1.5px solid var(--c-text-muted);
  transform: rotate(45deg);
}

.hw-breadcrumbs__list a { color: var(--c-text-muted); }
.hw-breadcrumbs__list a:hover { color: var(--c-accent); }
.hw-breadcrumbs__list li:last-child span { color: var(--c-text); }

/* ===================== TABLE OF CONTENTS ===================== */
.hw-toc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 40px;
}

.hw-toc__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hw-toc__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px 24px;
}

.hw-toc__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
}

.hw-toc__list li a:hover {
  color: var(--c-accent);
  padding-left: 4px;
}

.hw-toc__list li a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--c-primary); }

/* ===================== SECTION TITLES ===================== */
.hw-stitle {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hw-stitle svg { color: var(--c-accent); }

.hw-sdesc {
  color: var(--c-text-muted);
  font-size: 0.97rem;
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.6;
}

.hw-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: 3px;
  margin: 10px 0 24px;
}

/* ===================== ADVANTAGES ===================== */
.hw-advantages { background: rgba(255,255,255,0.015); }

.hw-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.hw-adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.hw-adv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(3,86,105,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hw-adv-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(3,86,105,0.25), rgba(0,201,255,0.15));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}

.hw-adv-card__icon svg { width: 24px; height: 24px; }

.hw-adv-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
}

.hw-adv-card__text {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* ===================== APP INFO ===================== */
.hw-app { background: var(--c-bg); }

.hw-app__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hw-app__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.hw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 340px;
}

.hw-table th, .hw-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
}

.hw-table th {
  background: rgba(3,86,105,0.25);
  color: var(--c-accent);
  font-weight: 700;
  width: 40%;
}

.hw-table td { color: var(--c-text); }

.hw-table tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.hw-table tr:hover td { background: rgba(255,255,255,0.05); }

.hw-app__download {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hw-app__download-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}

.hw-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: var(--c-text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}

.hw-dl-btn:hover {
  background: var(--c-card-h);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: translateX(3px);
}

.hw-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--c-accent); }

.hw-dl-btn__label { font-size: 0.7rem; color: var(--c-text-muted); font-weight: 400; display: block; }

/* ===================== VIDEO ===================== */
.hw-video { background: rgba(255,255,255,0.015); }

.hw-video__wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
}

.hw-video__wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ===================== GAMES ===================== */
.hw-games { background: var(--c-bg); }

.hw-games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hw-game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hw-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.hw-game-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hw-game-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hw-game-card:hover .hw-game-card__img img { transform: scale(1.08); }

.hw-game-card__badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hw-game-card__body { padding: 16px; }

.hw-game-card__provider {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hw-game-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
}

.hw-game-card__foot { display: flex; gap: 8px; }

.hw-game-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--c-text-muted);
  font-size: 0.8rem;
}

.hw-game-placeholder svg { width: 40px; height: 40px; color: var(--c-primary); }

/* ===================== CONTENT BLOCK ===================== */
.hw-review { background: rgba(255,255,255,0.015); }

.hw-content-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
  max-width: 860px;
}

.hw-content-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--c-white); margin: 28px 0 12px; }
.hw-content-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-white); margin: 24px 0 10px; }
.hw-content-body h4 { font-size: 1rem; font-weight: 700; color: var(--c-accent); margin: 20px 0 8px; }
.hw-content-body p { margin-bottom: 16px; }
.hw-content-body strong { color: var(--c-white); }
.hw-content-body em { color: var(--c-accent2); font-style: italic; }
.hw-content-body a { color: var(--c-accent); border-bottom: 1px solid rgba(0,201,255,0.3); }
.hw-content-body a:hover { color: var(--c-accent2); border-color: rgba(232,179,75,0.4); }

.hw-content-body ul, .hw-content-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.hw-content-body ul li, .hw-content-body ol li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.hw-content-body ul li::marker { color: var(--c-accent); }
.hw-content-body ol li::marker { color: var(--c-accent2); font-weight: 700; }

.hw-content-body blockquote {
  border-left: 3px solid var(--c-primary);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--c-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.hw-content-body table {
  width: auto;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hw-content-body table th, .hw-content-body table td {
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
}

.hw-content-body table th {
  background: rgba(3,86,105,0.25);
  color: var(--c-accent);
  font-weight: 700;
}

.hw-content-body table td { color: var(--c-text); }
.hw-content-body table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.hw-content-body img { border-radius: var(--radius-sm); margin: 12px 0; }
.hw-content-body hr { border: none; border-top: 1px solid var(--c-border); margin: 28px 0; }

/* ===================== FAQ ===================== */
.hw-faq { background: var(--c-bg); }

.hw-faq__list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }

.hw-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.hw-faq-item.is-open { border-color: rgba(3,86,105,0.5); }

.hw-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  text-align: left;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font);
}

.hw-faq-item__q:hover { background: rgba(255,255,255,0.03); }

.hw-faq-item__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}

.hw-faq-item.is-open .hw-faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--c-primary);
  color: var(--c-accent);
}

.hw-faq-item__a {
  display: none;
  padding: 0 22px 20px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hw-faq-item__a a { color: var(--c-accent); }
.hw-faq-item.is-open .hw-faq-item__a { display: block; }

/* ===================== AUTHOR ===================== */
.hw-author { background: rgba(255,255,255,0.015); }

.hw-author__card {
  display: flex;
  gap: 32px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 820px;
  align-items: flex-start;
}

.hw-author__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--c-bg3);
  border: 3px solid var(--c-primary);
}

.hw-author__photo-ph {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--c-primary);
  color: var(--c-white);
  font-size: 2.2rem;
  font-weight: 700;
}

.hw-author__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 3px;
}

.hw-author__pos {
  font-size: 0.82rem;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.hw-author__bio {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.hw-author__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hw-author__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 99px;
  padding: 5px 12px;
  transition: all var(--transition);
}

.hw-author__link svg { width: 14px; height: 14px; }
.hw-author__link:hover { color: var(--c-white); border-color: var(--c-primary); }

.hw-author__meta {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 12px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hw-author__meta span { display: flex; align-items: center; gap: 5px; }

/* ===================== FOOTER ===================== */
.hw-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.hw-footer__top {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.hw-footer__brand-logo img { height: 40px; margin-bottom: 14px; }

.hw-footer__brand-text {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.hw-footer__country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.hw-footer__social {
  display: flex;
  gap: 8px;
}

.hw-footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: all var(--transition);
}

.hw-footer__social a svg { width: 16px; height: 16px; }
.hw-footer__social a:hover { border-color: var(--c-primary); color: var(--c-accent); }

.hw-footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.hw-footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.hw-footer__col-links a {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.hw-footer__col-links a:hover { color: var(--c-accent); }

.hw-footer__email {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.hw-footer__email svg { width: 14px; height: 14px; flex-shrink: 0; }

.hw-footer__bottom { padding: 28px 0; }

.hw-footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hw-footer__logos-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 20px;
}

.hw-footer__logos-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--c-text-muted);
  letter-spacing: 0.5px;
}

.hw-footer__logo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hw-logo-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hw-logo-chip svg { width: 14px; height: 14px; }

.hw-footer__legal {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 860px;
  margin: 0 auto;
}

.hw-footer__copy {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

/* ===================== WIDGET ===================== */
.hw-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--c-bg) 0%, var(--c-bg2) 100%);
  border-top: 2px solid var(--c-primary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hw-widget.is-visible { transform: translateY(0); }

.hw-widget__text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hw-widget__bonus {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-accent2);
  background: rgba(232,179,75,0.12);
  border: 1px solid rgba(232,179,75,0.3);
  padding: 3px 10px;
  border-radius: 6px;
}

.hw-widget__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.hw-widget__close:hover { color: var(--c-white); }
.hw-widget__close svg { width: 18px; height: 18px; }

/* ===================== UTILITIES ===================== */
.hw-text-center { text-align: center; }
.hw-mt-8 { margin-top: 8px; }
.hw-mt-16 { margin-top: 16px; }
.hw-mt-24 { margin-top: 24px; }
.hw-mt-32 { margin-top: 32px; }
.hw-mb-24 { margin-bottom: 24px; }
.hw-mb-32 { margin-bottom: 32px; }

/* ===================== SCROLL ANIMATIONS ===================== */
.hw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js .hw-reveal {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.hw-reveal-group .hw-reveal:nth-child(1) { transition-delay: 0.05s; }
.hw-reveal-group .hw-reveal:nth-child(2) { transition-delay: 0.12s; }
.hw-reveal-group .hw-reveal:nth-child(3) { transition-delay: 0.19s; }
.hw-reveal-group .hw-reveal:nth-child(4) { transition-delay: 0.26s; }
.hw-reveal-group .hw-reveal:nth-child(5) { transition-delay: 0.33s; }
.hw-reveal-group .hw-reveal:nth-child(6) { transition-delay: 0.40s; }

/* ===================== WP GHOST ELEMENTS ===================== */
.wp-block-group { display: block; }
.wp-block-columns { display: grid; }
.entry-content { display: block; }
.site-main { display: block; }
.elementor-section { display: block; }
.wp-caption { display: inline-block; }
.alignnone { max-width: 100%; }
.size-full { max-width: 100%; height: auto; }
.wp-post-image { display: block; }
.custom-logo-link { display: inline-block; }
.screen-reader-text { position: absolute; clip: rect(1px, 1px, 1px, 1px); }
.skip-link { position: absolute; top: -999px; }
#wpadminbar { display: none !important; }

/* ===================== SLIDERS (mobile games) ===================== */
.hw-games-slider-wrap {
  display: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.hw-games-slider-wrap .hw-game-card {
  min-width: 240px;
  scroll-snap-align: start;
}

/* ===================== PAGES ===================== */
.hw-page-content {
  padding: 48px 0 64px;
  max-width: 760px;
  margin: 0 auto;
}

.hw-page-content h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 24px;
}

.hw-page-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--c-white); margin: 24px 0 10px; }
.hw-page-content p { margin-bottom: 14px; color: var(--c-text); font-size: 0.95rem; line-height: 1.7; }
.hw-page-content ul, .hw-page-content ol { padding-left: 22px; margin-bottom: 14px; }
.hw-page-content li { margin-bottom: 6px; color: var(--c-text); font-size: 0.95rem; }
.hw-page-content ul li::marker { color: var(--c-accent); }
.hw-page-content a { color: var(--c-accent); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hw-footer__top { grid-template-columns: 1fr 1fr; }
  .hw-app__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hw-section { padding: 44px 0; }
  .hw-header__nav { display: none; }
  .hw-online { display: none; }
  .hw-header__actions .btn { display: none; }
  .hw-burger { display: flex; }
  .hw-mobile-menu__actions { display: flex; }
  .hw-games__grid { display: none; }
  .hw-games-slider-wrap { display: flex; }
  .hw-footer__top { grid-template-columns: 1fr; gap: 24px; }
  .hw-toc__list { grid-template-columns: 1fr; }
  .hw-author__card { flex-direction: column; padding: 24px 20px; }
  .hw-hero { min-height: 420px; }
  .hw-hero__title { font-size: 1.8rem; }
  .hw-advantages__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hw-advantages__grid { grid-template-columns: 1fr; }
  .hw-hero__cta { flex-direction: column; align-items: flex-start; }
  .hw-footer__logo-chips { gap: 6px; }
  .hw-widget { flex-direction: column; gap: 10px; }
}

/* ===================== INFO PAGES ===================== */
.hw-info-hero {
  background: var(--c-bg2);
  border-bottom: 1px solid var(--c-border);
  padding: 48px 0 40px;
}

.hw-info-hero__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.25;
}

.hw-info-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 860px;
}

.hw-info-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-accent);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}

.hw-info-body h2:first-child { margin-top: 0; }

.hw-info-body p {
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.hw-info-body ul, .hw-info-body ol {
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--c-text);
  line-height: 1.7;
}

.hw-info-body li { margin-bottom: 6px; }

.hw-info-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
}

.hw-info-body table th,
.hw-info-body table td {
  border: 1px solid var(--c-border);
  padding: 10px 14px;
  text-align: left;
}

.hw-info-body table th {
  background: var(--c-bg3);
  color: var(--c-accent);
  font-weight: 700;
  white-space: nowrap;
}

.hw-info-body table td { color: var(--c-text); }

.hw-info-body table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

.hw-info-body a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hw-info-body a:hover { color: var(--c-accent2); }

.hw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  margin-top: 8px;
}

.hw-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hw-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
}

.hw-form-group input,
.hw-form-group select,
.hw-form-group textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: border-color var(--transition);
  outline: none;
}

.hw-form-group input:focus,
.hw-form-group select:focus,
.hw-form-group textarea:focus {
  border-color: var(--c-accent);
}

.hw-form-group input::placeholder,
.hw-form-group textarea::placeholder {
  color: var(--c-text-muted);
}

.hw-form-group select option {
  background: var(--c-bg2);
  color: var(--c-text);
}

.hw-form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 768px) {
  .hw-info-body { padding: 28px 20px; }
  .hw-info-hero__title { font-size: 1.5rem; }
}

/* ===================== UNUSED STYLES (fingerprint) ===================== */
.x7f2a-btn::after { content: ''; display: none; }
.q9w3r-mask { clip-path: none; }
.m4t8u-grid { --col: none; }
.b3x9z-container { contain: none; }
.p2r7s-row:empty { display: none; }
.n5q1w-link[data-track]::before { content: attr(data-track); display: none; }
.k8d4f-hero { will-change: auto; }
.f6g2h-section[aria-hidden]::after { content: ''; }
.e9v5j-widget .close-icon { pointer-events: none; }
.j3b7n-block { scroll-margin-top: 0; }
