:root {
  --hh18-bg: #181922;
  --hh18-bg-gradient: linear-gradient(135deg, rgba(50,40,60,0.08) 0%, rgba(30,30,40,0.05) 100%);
  --hh18-card-bg: #232334;
  --hh18-card-gradient: linear-gradient(120deg, rgba(80,70,110,0.07) 0%, rgba(30,30,40,0.04) 100%);
  --hh18-accent: #8f5fff;
  --hh18-accent-hover: #a480ff;
  --hh18-accent-bg: rgba(143,95,255,0.09);
  --hh18-text: #e4e3ee;
  --hh18-text-muted: #b3b1c5;
  --hh18-border: rgba(255,255,255,0.08);
  --hh18-shadow: 0 4px 24px 0 rgba(30,20,50,0.13), 0 1.5px 6px 0 rgba(60,40,80,0.06);
  --hh18-radius: 18px;
  --hh18-radius-sm: 10px;
  --hh18-radius-lg: 30px;
  --hh18-padding: 32px;
  --hh18-padding-sm: 18px;
  --hh18-padding-xs: 10px;
  --hh18-gap: 24px;
  --hh18-gap-sm: 14px;
  --hh18-gap-xs: 8px;
  --hh18-max-width: 1240px;
  --hh18-font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --hh18-font-size: 14px;
  --hh18-font-size-lg: 22px;
  --hh18-font-size-xl: 32px;
  --hh18-transition: 0.22s cubic-bezier(.4,.14,.3,1);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--hh18-bg);
  background-image: var(--hh18-bg-gradient);
  color: var(--hh18-text);
  font-family: var(--hh18-font);
  font-size: var(--hh18-font-size);
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.hh18-body {
  margin: 0;
  padding: 0;
  background: var(--hh18-bg);
  background-image: var(--hh18-bg-gradient);
}

a {
  color: var(--hh18-accent);
  text-decoration: none;
  transition: color var(--hh18-transition);
}
a:hover,
a:focus {
  color: var(--hh18-accent-hover);
}

/* Container */
.hh18-container {
  max-width: var(--hh18-max-width);
  margin: 0 auto;
  padding: 0 var(--hh18-padding-sm);
}

/* Header */
.hh18-header {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  box-shadow: var(--hh18-shadow);
  border-bottom: 1px solid var(--hh18-border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.hh18-header__inner {
  max-width: var(--hh18-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hh18-padding-xs) var(--hh18-padding-sm);
  gap: var(--hh18-gap);
}
.hh18-brand {
  display: flex;
  align-items: center;
  gap: var(--hh18-gap-xs);
  font-weight: 600;
  font-size: 17px;
  color: var(--hh18-text);
  text-shadow: 0 1px 8px rgba(80,60,120,0.10);
  letter-spacing: 0.02em;
  transition: color var(--hh18-transition);
}
.hh18-brand__logo {
  width: 38px;
  height: 38px;
  border-radius: var(--hh18-radius-sm);
  background: var(--hh18-accent-bg);
  object-fit: cover;
  box-shadow: 0 1px 6px 0 rgba(143,95,255,0.09);
}
.hh18-brand__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--hh18-accent);
  letter-spacing: 0.01em;
}

.hh18-nav__list {
  display: flex;
  gap: var(--hh18-gap-xs);
  margin: 0;
  padding: 0;
  list-style: none;
}
.hh18-nav__item {
  margin: 0;
}
.hh18-nav__link {
  display: block;
  padding: 7px 18px;
  border-radius: var(--hh18-radius-sm);
  color: var(--hh18-text);
  font-weight: 500;
  transition: background var(--hh18-transition), color var(--hh18-transition);
  position: relative;
}
.hh18-nav__link:hover,
.hh18-nav__link:focus {
  background: var(--hh18-accent-bg);
  color: var(--hh18-accent);
}

/* Section base */
.hh18-section {
  margin-top: var(--hh18-gap);
  margin-bottom: var(--hh18-gap);
  padding: var(--hh18-padding) 0;
  background: none;
  position: relative;
}
@media (max-width: 700px) {
  .hh18-section {
    padding: var(--hh18-padding-sm) 0;
  }
}

/* Hero Section */
.hh18-hero {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius-lg);
  box-shadow: var(--hh18-shadow);
  overflow: hidden;
  margin-top: var(--hh18-gap);
  margin-bottom: var(--hh18-gap);
  position: relative;
}
.hh18-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--hh18-gap);
  align-items: stretch;
  max-width: var(--hh18-max-width);
  margin: 0 auto;
  padding: var(--hh18-padding);
}
@media (max-width: 900px) {
  .hh18-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap);
    padding: var(--hh18-padding-sm);
  }
}
.hh18-hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hh18-hero__col--left {
  gap: var(--hh18-gap-xs);
}
.hh18-hero__title {
  font-size: var(--hh18-font-size-xl);
  font-weight: 800;
  color: var(--hh18-text);
  margin-bottom: var(--hh18-gap-xs);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(80,60,120,0.10);
}
.hh18-hero__lead {
  color: var(--hh18-text-muted);
  font-size: 16px;
  margin-bottom: var(--hh18-gap-xs);
  margin-top: 0;
}
.hh18-hero__meta {
  display: flex;
  gap: var(--hh18-gap-xs);
  flex-wrap: wrap;
  margin: 0 0 var(--hh18-gap-xs) 0;
  padding: 0;
  list-style: none;
}
.hh18-hero__meta-item {
  background: var(--hh18-accent-bg);
  color: var(--hh18-accent);
  border-radius: var(--hh18-radius-sm);
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hh18-hero__actions {
  display: flex;
  gap: var(--hh18-gap-xs);
  margin-bottom: var(--hh18-gap-xs);
}
.hh18-cta {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 26px;
  border-radius: var(--hh18-radius);
  box-shadow: 0 1px 7px 0 rgba(143,95,255,0.13);
  background: var(--hh18-accent-bg);
  color: var(--hh18-accent);
  border: none;
  cursor: pointer;
  transition: background var(--hh18-transition), color var(--hh18-transition), box-shadow var(--hh18-transition);
  text-align: center;
}
.hh18-cta--primary {
  background: var(--hh18-accent);
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(143,95,255,0.15);
}
.hh18-cta--primary:hover,
.hh18-cta--primary:focus {
  background: var(--hh18-accent-hover);
  color: #fff;
  box-shadow: 0 4px 28px 0 rgba(143,95,255,0.19);
}
.hh18-cta--muted {
  background: var(--hh18-accent-bg);
  color: var(--hh18-accent);
}
.hh18-cta--muted:hover,
.hh18-cta--muted:focus {
  background: rgba(143,95,255,0.18);
  color: var(--hh18-accent-hover);
}
.hh18-hero__highlights {
  margin: var(--hh18-gap-xs) 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hh18-hero__highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--hh18-text);
  font-weight: 500;
}
.hh18-hero__highlights li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--hh18-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
  opacity: 0.7;
}

.hh18-hero__col--right {
  align-items: flex-end;
  justify-content: center;
}
.hh18-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--hh18-gap-xs);
}
.hh18-hero__image {
  width: 340px;
  max-width: 100%;
  max-height: 300px;
  border-radius: var(--hh18-radius-lg);
  object-fit: cover;
  box-shadow: 0 6px 32px 0 rgba(143,95,255,0.13);
  margin-bottom: var(--hh18-gap-xs);
}
.hh18-hero__thumbnails {
  display: flex;
  gap: 8px;
}
.hh18-hero__thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--hh18-radius-sm);
  box-shadow: 0 1px 8px 0 rgba(143,95,255,0.09);
  background: var(--hh18-accent-bg);
  transition: transform var(--hh18-transition), box-shadow var(--hh18-transition);
  cursor: pointer;
}
.hh18-hero__thumb:hover,
.hh18-hero__thumb:focus {
  transform: scale(1.08);
  box-shadow: 0 4px 16px 0 rgba(143,95,255,0.15);
}

@media (max-width: 700px) {
  .hh18-hero__image {
    width: 100%;
    max-height: 220px;
  }
  .hh18-hero__thumbnails {
    gap: 5px;
  }
  .hh18-hero__thumb {
    width: 38px;
    height: 38px;
  }
}

/* World Section */
.hh18-world {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius);
  box-shadow: var(--hh18-shadow);
}
.hh18-title {
  font-size: var(--hh18-font-size-lg);
  font-weight: 700;
  margin-bottom: var(--hh18-gap-xs);
  color: var(--hh18-accent);
  letter-spacing: 0.01em;
}
.hh18-world__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--hh18-gap);
  margin-top: var(--hh18-gap-xs);
}
.hh18-world__text {
  background: rgba(30,30,40,0.18);
  border-radius: var(--hh18-radius);
  padding: var(--hh18-padding-sm);
  box-shadow: 0 2px 12px 0 rgba(143,95,255,0.07);
}
.hh18-world__text h3 {
  font-size: 16px;
  color: var(--hh18-accent);
  margin-top: var(--hh18-gap-xs);
  margin-bottom: 3px;
}
.hh18-world__text ul {
  margin: 0 0 var(--hh18-gap-xs) 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hh18-world__text ul li {
  position: relative;
  padding-left: 18px;
  color: var(--hh18-text);
}
.hh18-world__text ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--hh18-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.5;
}
.hh18-world__aside {
  background: rgba(40,30,60,0.10);
  border-radius: var(--hh18-radius);
  padding: var(--hh18-padding-sm);
  box-shadow: 0 2px 12px 0 rgba(143,95,255,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--hh18-gap-xs);
}
.hh18-world__aside h3 {
  color: var(--hh18-accent);
  font-size: 15px;
  margin-bottom: 4px;
}
.hh18-world__chars {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hh18-world__chars li {
  position: relative;
  padding-left: 15px;
  color: var(--hh18-text-muted);
  font-size: 13px;
}
.hh18-world__chars li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--hh18-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
  opacity: 0.4;
}
@media (max-width: 900px) {
  .hh18-world__grid {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
  .hh18-world__aside {
    margin-top: var(--hh18-gap-xs);
  }
}

/* Gameplay Section */
.hh18-gameplay {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius);
  box-shadow: var(--hh18-shadow);
}
.hh18-gameplay__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--hh18-gap);
  margin-top: var(--hh18-gap-xs);
}
.hh18-gameplay__left,
.hh18-gameplay__right {
  background: rgba(30,30,40,0.13);
  border-radius: var(--hh18-radius);
  padding: var(--hh18-padding-sm);
  box-shadow: 0 2px 10px 0 rgba(143,95,255,0.05);
  display: flex;
  flex-direction: column;
  gap: var(--hh18-gap-xs);
}
.hh18-gameplay__left h3,
.hh18-gameplay__right h3 {
  color: var(--hh18-accent);
  font-size: 15px;
  margin-bottom: 3px;
}
.hh18-gameplay__left ul,
.hh18-gameplay__right ul,
.hh18-gameplay__right ol {
  margin: 0 0 var(--hh18-gap-xs) 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hh18-gameplay__left ul li,
.hh18-gameplay__right ul li {
  position: relative;
  padding-left: 16px;
  color: var(--hh18-text);
}
.hh18-gameplay__left ul li::before,
.hh18-gameplay__right ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--hh18-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.4;
}
.hh18-gameplay__right ol {
  counter-reset: gameplay-step;
}
.hh18-gameplay__right ol li {
  counter-increment: gameplay-step;
  position: relative;
  padding-left: 22px;
  color: var(--hh18-text-muted);
}
.hh18-gameplay__right ol li::before {
  content: counter(gameplay-step) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hh18-accent);
  font-weight: 700;
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .hh18-gameplay__grid {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
}

/* Features Section */
.hh18-features {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius-lg);
  box-shadow: var(--hh18-shadow);
}
.hh18-features__list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--hh18-gap);
  margin-top: var(--hh18-gap-xs);
}
.hh18-features__item {
  background: rgba(30,30,40,0.16);
  border-radius: var(--hh18-radius);
  box-shadow: 0 2px 10px 0 rgba(143,95,255,0.07);
  padding: var(--hh18-padding-sm);
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.hh18-features__item h3 {
  color: var(--hh18-accent);
  font-size: 15px;
  margin-bottom: 2px;
  font-weight: 700;
}
.hh18-features__item p {
  color: var(--hh18-text-muted);
  font-size: 13px;
  margin: 0;
}
@media (max-width: 1100px) {
  .hh18-features__list {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 700px) {
  .hh18-features__list {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
}

/* Screenshots Section */
.hh18-screenshots {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius);
  box-shadow: var(--hh18-shadow);
}
.hh18-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--hh18-gap-sm);
  margin-top: var(--hh18-gap-xs);
}
.hh18-screenshot {
  background: rgba(30,30,40,0.11);
  border-radius: var(--hh18-radius-sm);
  box-shadow: 0 2px 10px 0 rgba(143,95,255,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--hh18-padding-xs);
  min-width: 0;
}
.hh18-screenshot img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--hh18-radius);
  margin-bottom: 7px;
  background: var(--hh18-accent-bg);
  box-shadow: 0 1px 6px 0 rgba(143,95,255,0.08);
}
.hh18-screenshot figcaption {
  color: var(--hh18-text-muted);
  font-size: 12px;
  text-align: center;
}
@media (max-width: 1100px) {
  .hh18-screenshots__grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 700px) {
  .hh18-screenshots__grid {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
  .hh18-screenshot img {
    height: 110px;
  }
}

/* Reviews Section */
.hh18-reviews {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius);
  box-shadow: var(--hh18-shadow);
}
.hh18-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: var(--hh18-gap);
  margin-top: var(--hh18-gap-xs);
}
.hh18-review {
  background: rgba(30,30,40,0.14);
  border-radius: var(--hh18-radius-sm);
  box-shadow: 0 1px 8px 0 rgba(143,95,255,0.07);
  padding: var(--hh18-padding-sm);
  font-size: 14px;
  color: var(--hh18-text);
  margin: 0;
  position: relative;
}
.hh18-review p {
  margin: 0 0 10px 0;
  font-style: italic;
}
.hh18-review footer {
  color: var(--hh18-accent);
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}
.hh18-stats {
  margin: var(--hh18-gap-xs) 0 0 0;
  padding: 0;
}
.hh18-stats ul {
  display: flex;
  gap: var(--hh18-gap-xs);
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.hh18-stats li {
  background: var(--hh18-accent-bg);
  color: var(--hh18-accent);
  border-radius: var(--hh18-radius-sm);
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .hh18-reviews__grid {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
  .hh18-stats ul {
    gap: 6px;
  }
}

/* Download Section */
.hh18-download {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius-lg);
  box-shadow: var(--hh18-shadow);
}
.hh18-download__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--hh18-gap);
  margin-top: var(--hh18-gap-xs);
}
.hh18-download__left,
.hh18-download__right {
  background: rgba(30,30,40,0.13);
  border-radius: var(--hh18-radius);
  padding: var(--hh18-padding-sm);
  box-shadow: 0 2px 10px 0 rgba(143,95,255,0.05);
  display: flex;
  flex-direction: column;
  gap: var(--hh18-gap-xs);
}
.hh18-download__left h3,
.hh18-download__right h3 {
  color: var(--hh18-accent);
  font-size: 15px;
  margin-bottom: 3px;
}
.hh18-download__left ul {
  margin: 0 0 var(--hh18-gap-xs) 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hh18-download__left ul li {
  position: relative;
  padding-left: 16px;
  color: var(--hh18-text);
}
.hh18-download__left ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--hh18-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.4;
}
.hh18-download__cta {
  margin-top: var(--hh18-gap-xs);
}
@media (max-width: 900px) {
  .hh18-download__grid {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
}

/* Audience Section */
.hh18-audience {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-radius: var(--hh18-radius);
  box-shadow: var(--hh18-shadow);
}
.hh18-audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hh18-gap);
  margin-top: var(--hh18-gap-xs);
}
.hh18-audience__grid > div {
  background: rgba(30,30,40,0.13);
  border-radius: var(--hh18-radius);
  padding: var(--hh18-padding-sm);
  box-shadow: 0 2px 10px 0 rgba(143,95,255,0.05);
  display: flex;
  flex-direction: column;
  gap: var(--hh18-gap-xs);
}
.hh18-audience__grid h3 {
  color: var(--hh18-accent);
  font-size: 15px;
  margin-bottom: 3px;
}
.hh18-audience__grid ul {
  margin: 0 0 var(--hh18-gap-xs) 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hh18-audience__grid ul li {
  position: relative;
  padding-left: 16px;
  color: var(--hh18-text);
}
.hh18-audience__grid ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--hh18-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.4;
}
@media (max-width: 900px) {
  .hh18-audience__grid {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
}

/* Footer */
.hh18-footer {
  background: var(--hh18-card-bg);
  background-image: var(--hh18-card-gradient);
  border-top: 1px solid var(--hh18-border);
  box-shadow: 0 -2px 24px 0 rgba(143,95,255,0.07);
  padding: var(--hh18-padding) 0 var(--hh18-padding-sm) 0;
  margin-top: var(--hh18-gap);
}
.hh18-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: var(--hh18-gap);
  max-width: var(--hh18-max-width);
  margin: 0 auto;
}
.hh18-footer__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
.hh18-footer__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 16px;
  color: var(--hh18-accent);
  margin-bottom: 7px;
}
.hh18-footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: var(--hh18-radius-sm);
  background: var(--hh18-accent-bg);
  object-fit: cover;
}
.hh18-footer__col h4 {
  color: var(--hh18-accent);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.hh18-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hh18-footer__col ul li a {
  color: var(--hh18-text-muted);
  font-size: 13px;
  transition: color var(--hh18-transition);
}
.hh18-footer__col ul li a:hover,
.hh18-footer__col ul li a:focus {
  color: var(--hh18-accent);
}
.hh18-footer__col p {
  color: var(--hh18-text-muted);
  font-size: 12px;
  margin: 0;
}
@media (max-width: 1100px) {
  .hh18-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--hh18-gap-xs);
  }
}
@media (max-width: 700px) {
  .hh18-footer {
    padding: var(--hh18-padding-sm) 0 var(--hh18-padding-xs) 0;
  }
  .hh18-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--hh18-gap-xs);
  }
}

/* General Responsive */
@media (max-width: 700px) {
  .hh18-title {
    font-size: 18px;
  }
  .hh18-hero__title {
    font-size: 21px;
  }
  .hh18-brand__title {
    font-size: 15px;
  }
  .hh18-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .hh18-nav__list {
    gap: 2px;
  }
  .hh18-section {
    margin-top: var(--hh18-gap-xs);
    margin-bottom: var(--hh18-gap-xs);
  }
  .hh18-card {
    padding: var(--hh18-padding-xs);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: var(--hh18-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--hh18-accent-bg);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(143,95,255,0.16);
}

/* Selection */
::selection {
  background: var(--hh18-accent-bg);
  color: var(--hh18-accent);
}

/* Remove outline for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}