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

:root {
  --bg-dark: #070D14;
  --bg-card: #0F1923;
  --bg-card-hover: #162432;
  --bg-surface: #121D2A;
  --bg-header: rgba(7, 13, 20, 0.92);
  --primary: #2DD4BF;
  --primary-hover: #14B8A6;
  --primary-glow: rgba(45, 212, 191, 0.25);
  --accent: #38BDF8;
  --accent-secondary: #F59E0B;
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(45, 212, 191, 0.2);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(45, 212, 191, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-dark);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus-visible {
  color: var(--primary-hover);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-head h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-full);
  margin: 0.75rem auto 0 auto;
}

.section-head p {
  font-size: 1.125rem;
}

.page-tag {
  background: linear-gradient(90deg, #064E3B 0%, #0F3832 50%, #064E3B 100%);
  color: var(--primary);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--primary);
  color: #070D14;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn--primary:hover, .btn--primary:focus-visible {
  background-color: var(--primary-hover);
  color: #070D14;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(7, 13, 20, 0.98);
  border-bottom: 1px solid var(--border);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.brand svg {
  width: 38px;
  height: 38px;
  color: var(--primary);
}

.brand-name b {
  color: var(--primary);
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav a:hover, .nav a.is-active {
  color: var(--primary);
}

.nav a.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}

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

.hm-hero {
  position: relative;
  padding: 5rem 0 4rem 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hm-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hm-hero__content {
  text-align: left;
}

.hm-hero h1 {
  margin-bottom: 1.5rem;
}

.hm-hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hm-hero__sub {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hm-hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hm-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.hm-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hm-hero__note {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.hm-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.hm-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.game-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--bg-surface);
  overflow: hidden;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.05);
}

.game-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #070D14;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.game-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card__body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.game-card__body p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.game-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.game-card__tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.game-card__play {
  width: 100%;
}

.hm-games__more {
  text-align: center;
  margin-top: 3.5rem;
}

.hm-reviews {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hm-reviews__frame {
  overflow: hidden;
}

.hm-reviews__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.review-card__who h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.review-card__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--accent-secondary);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
}

.review-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

.hm-demo__shell {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin: 0 auto 1.5rem auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hm-demo__poster {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-surface);
  color: var(--text-muted);
}

.hm-demo__poster svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.hm-demo__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hm-demo__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.hm-community {
  padding: 5rem 0 0 0;
  background: var(--bg-dark);
}

.hm-community__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem auto;
}

.hm-community__inner h2 {
  margin-bottom: 1.25rem;
}

.hm-community__cta {
  margin-top: 2rem;
}

.hm-community__rp {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.hm-community__rp-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hm-community__rp-box h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hm-community__rp-box h3 svg {
  width: 24px;
  height: 24px;
}

.site-footer {
  background-color: #04080D;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  font-size: 0.925rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.site-footer__about .brand {
  margin-bottom: 1.25rem;
}

.site-footer__about p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.site-footer__social-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.site-footer__social-list a:hover {
  color: var(--primary);
}

.site-footer__social-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  display: block;
}

.site-footer__nav h2, .site-footer__legal h2, .site-footer__contact h2 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.site-footer__nav ul, .site-footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__nav a, .site-footer__legal a {
  color: var(--text-muted);
}

.site-footer__nav a:hover, .site-footer__legal a:hover {
  color: var(--primary);
}

.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer__contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: block;
}

.site-footer__rg {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.site-footer__rg-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.rg-18 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #EF4444;
  border: 2px solid #EF4444;
  border-radius: var(--radius-full);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__rg-link {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__rg-link:hover {
  color: var(--primary);
}

.site-footer__note {
  padding: 2.5rem 0;
  text-align: center;
}

.site-footer__note p {
  font-size: 0.825rem;
  color: var(--text-dim);
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.6;
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.gmodal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(7, 13, 20, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gmodal[hidden] {
  display: none !important;
}

.gmodal__panel {
  width: 100%;
  max-width: 1100px;
  height: 85vh;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gmodal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.gmodal__bar h2 {
  font-size: 1.2rem;
}

.gmodal__close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gmodal__close:hover {
  background: #EF4444;
  color: #FFF;
}

.gmodal__close svg {
  width: 20px;
  height: 20px;
}

.gmodal__frame {
  width: 100%;
  height: 100%;
  border: none;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 620px;
  z-index: 990;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--text-muted);
}

.cookie-banner p strong {
  color: var(--text-main);
}

.cookie-banner__acts {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.chat-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 980;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #070D14;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: var(--transition);
}

.chat-toggle:hover {
  transform: scale(1.08);
  background: var(--primary-hover);
}

.chat-toggle svg {
  width: 26px;
  height: 26px;
}

.chat-panel {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 985;
  width: 360px;
  max-width: calc(100vw - 3rem);
  height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-panel__head {
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-panel__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #070D14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.chat-panel__who {
  flex-grow: 1;
}

.chat-panel__who h2 {
  font-size: 1rem;
  margin: 0;
}

.chat-panel__who p {
  font-size: 0.75rem;
  color: var(--primary);
  margin: 0;
}

.chat-panel__close {
  color: var(--text-muted);
}

.chat-panel__close svg {
  width: 20px;
  height: 20px;
}

.chat-log {
  flex-grow: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.chat-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  line-height: 1.4;
}

.chat-msg--bot {
  background: var(--bg-surface);
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-sm);
}

.chat-msg--user {
  background: var(--primary);
  color: #070D14;
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
  font-weight: 600;
}

.chat-form {
  padding: 0.75rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}

.chat-form input {
  flex-grow: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.53rem 0.85rem;
  font-size: 0.875rem;
}

.chat-form button {
  background: var(--primary);
  color: #070D14;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-form button svg {
  width: 18px;
  height: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-notice {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-notice.is-success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #34D399;
}

.map-shell {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.page-hero {
  padding: 4rem 0 3rem 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
}

.content-box h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem 0;
  color: var(--primary);
}

.content-box h2:first-child {
  margin-top: 0;
}

.content-box h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem 0;
}

.content-box p {
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-box ul {
  list-style: disc;
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.content-box li {
  margin-bottom: 0.5rem;
}

.game-card__media-placeholder {
  background: #0F242F;
  object-fit: contain;
  padding: 2rem;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.policy-table th {
  padding: 0.75rem;
  border-bottom: 2px solid var(--primary);
  text-align: left;
}

.policy-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 992px) {
  .hm-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hm-hero__content {
    text-align: center;
  }

  .hm-hero__cta {
    justify-content: center;
  }

  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 99;
  }

  .nav.is-open {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
  }

  .burger.is-active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .hm-games__grid,
  .hm-reviews__track {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__acts {
    width: 100%;
  }

  .cookie-banner__acts button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    width: 100%;
  }

  .hm-hero__cta {
    flex-direction: column;
  }

  .content-box {
    padding: 1.5rem;
  }
}
