:root {
  --hotpot-bg: #f6f7f9;
  --hotpot-bg-alt: #fff;
  --hotpot-orange: #ff7a1a;
  --hotpot-orange-light: #ffb97a;
  --hotpot-gray: #dbe1e7;
  --hotpot-gray-dark: #b0b7be;
  --hotpot-shadow: 0 4px 24px 0 rgba(30, 32, 36, 0.08), 0 1.5px 4px 0 rgba(30,32,36,0.06);
  --hotpot-radius: 20px;
  --hotpot-radius-sm: 12px;
  --hotpot-radius-lg: 32px;
  --hotpot-border: 1.5px solid var(--hotpot-orange);
  --hotpot-border-gray: 1.5px solid var(--hotpot-gray);
  --hotpot-transition: 0.25s cubic-bezier(.45,.03,.52,1.05);
  --hotpot-max-width: 1240px;
  --hotpot-font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --hotpot-font-size: 14px;
  --hotpot-title-size: 2.1rem;
  --hotpot-subtitle-size: 1.2rem;
  --hotpot-card-gap: 32px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--hotpot-bg);
  font-family: var(--hotpot-font);
  font-size: var(--hotpot-font-size);
  color: #23272f;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.hotpot-body {
  min-height: 100vh;
  background: var(--hotpot-bg);
}

/* Universal container */
.hotpot-section,
.hotpot-hero {
  padding: 56px 0 48px 0;
}

.hotpot-section__inner,
.hotpot-hero__container,
.hotpot-footer__inner {
  width: 100%;
  max-width: var(--hotpot-max-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* HEADER */
.hotpot-header {
  background: var(--hotpot-bg-alt);
  box-shadow: var(--hotpot-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.hotpot-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--hotpot-max-width);
  margin: 0 auto;
  padding: 12px 24px 12px 24px;
}

.hotpot-logo__img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(255,122,26,0.12);
  transition: box-shadow var(--hotpot-transition);
}
.hotpot-logo__img:hover {
  box-shadow: 0 4px 16px 0 rgba(255,122,26,0.18);
}

.hotpot-nav {
  margin-left: 24px;
}
.hotpot-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hotpot-nav__link {
  text-decoration: none;
  color: #23272f;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--hotpot-radius-sm);
  transition: background var(--hotpot-transition), color var(--hotpot-transition);
}
.hotpot-nav__link:hover,
.hotpot-nav__link:focus {
  background: var(--hotpot-orange-light);
  color: var(--hotpot-orange);
}

.hotpot-header__menu-btn {
  display: none;
  background: var(--hotpot-orange);
  color: #fff;
  border: none;
  border-radius: var(--hotpot-radius-sm);
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--hotpot-transition), box-shadow var(--hotpot-transition);
  box-shadow: 0 2px 8px 0 rgba(255,122,26,0.10);
}
.hotpot-header__menu-btn:hover,
.hotpot-header__menu-btn:focus {
  background: #ff9448;
  box-shadow: 0 4px 16px 0 rgba(255,122,26,0.18);
}

.hotpot-mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  right: 24px;
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 20px 0;
  min-width: 180px;
  z-index: 110;
}
.hotpot-mobile-menu[hidden] { display: none; }
.hotpot-mobile-menu__list {
  margin: 0;
  padding: 0 16px;
  list-style: none;
}
.hotpot-mobile-menu__list li {
  margin-bottom: 12px;
}
.hotpot-mobile-menu__list li:last-child { margin-bottom: 0; }
.hotpot-mobile-menu__list a {
  color: #23272f;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  border-radius: var(--hotpot-radius-sm);
  transition: background var(--hotpot-transition), color var(--hotpot-transition);
}
.hotpot-mobile-menu__list a:hover {
  background: var(--hotpot-orange-light);
  color: var(--hotpot-orange);
}

/* HERO */
.hotpot-hero {
  background: linear-gradient(120deg, #fff 65%, #fff7f2 100%);
  border-radius: 0 0 var(--hotpot-radius-lg) var(--hotpot-radius-lg);
  box-shadow: var(--hotpot-shadow);
  margin-bottom: 32px;
}
.hotpot-hero__container {
  display: flex;
  flex-direction: column;
}
.hotpot-hero__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.hotpot-hero__col {
  flex: 1 1 0px;
  min-width: 320px;
}
.hotpot-hero__col--text {
  max-width: 520px;
}
.hotpot-hero__title {
  font-size: var(--hotpot-title-size);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--hotpot-orange);
  letter-spacing: -0.5px;
}
.hotpot-hero__subtitle {
  font-size: var(--hotpot-subtitle-size);
  color: #444;
  margin-bottom: 22px;
  font-weight: 500;
}
.hotpot-hero__bullets {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}
.hotpot-hero__bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #23272f;
}
.hotpot-hero__bullets li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: var(--hotpot-orange);
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(255,122,26,0.15);
}
.hotpot-hero__actions {
  display: flex;
  gap: 18px;
  margin: 18px 0 16px 0;
}
.hotpot-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: var(--hotpot-radius);
  border: none;
  cursor: pointer;
  transition: background var(--hotpot-transition), color var(--hotpot-transition), box-shadow var(--hotpot-transition);
  box-shadow: 0 2px 8px 0 rgba(255,122,26,0.08);
  text-decoration: none;
  outline: none;
}
.hotpot-btn--primary {
  background: var(--hotpot-orange);
  color: #fff;
}
.hotpot-btn--primary:hover,
.hotpot-btn--primary:focus {
  background: #ff9448;
  color: #fff;
}
.hotpot-btn--secondary {
  background: #fff;
  color: var(--hotpot-orange);
  border: var(--hotpot-border);
}
.hotpot-btn--secondary:hover,
.hotpot-btn--secondary:focus {
  background: var(--hotpot-orange-light);
  color: #fff;
}

.hotpot-hero__meta {
  color: #888;
  font-size: 0.97em;
  margin-top: 10px;
}

.hotpot-hero__col--visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotpot-visual-grid {
  display: grid;
  grid-template-columns: 180px 180px;
  grid-template-rows: 180px 180px;
  gap: 18px;
}
.hotpot-visual-grid__img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--hotpot-radius);
  background: var(--hotpot-bg);
  box-shadow: var(--hotpot-shadow);
  transition: transform var(--hotpot-transition), box-shadow var(--hotpot-transition);
}
.hotpot-visual-grid__img:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(255,122,26,0.18);
}

/* SECTION: Shortdesc */
.hotpot-shortdesc .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 32px 32px 24px 32px;
  margin-bottom: 32px;
}
.hotpot-section__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hotpot-orange);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hotpot-text {
  color: #23272f;
  line-height: 1.7;
}

/* SECTION: World */
.hotpot-world .hotpot-section__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius-lg);
  box-shadow: var(--hotpot-shadow);
  padding: 36px 36px 28px 36px;
  margin-bottom: 32px;
}
.hotpot-world__col {
  min-width: 0;
}
.hotpot-world__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hotpot-world__img {
  width: 210px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  border: var(--hotpot-border);
}
.hotpot-caption {
  font-size: 0.93em;
  color: #888;
  margin-top: 6px;
}

/* Lists with icons */
.hotpot-list {
  list-style: none;
  margin: 18px 0 0 0;
  padding: 0;
}
.hotpot-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.hotpot-list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--hotpot-orange);
  border-radius: 50%;
}

/* SECTION: Mechanics */
.hotpot-mechanics .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 36px 36px 28px 36px;
  margin-bottom: 32px;
}
.hotpot-mechanics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hotpot-card-gap);
  margin-top: 30px;
}
.hotpot-mech-card {
  background: var(--hotpot-bg);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 22px 18px 16px 18px;
  border-left: 2px solid var(--hotpot-orange);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--hotpot-transition), transform var(--hotpot-transition);
}
.hotpot-mech-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,26,0.12);
  transform: translateY(-3px) scale(1.025);
}
.hotpot-mech-card__title {
  font-size: 1.08rem;
  color: var(--hotpot-orange);
  font-weight: 700;
  margin-bottom: 10px;
}

/* SECTION: Specials */
.hotpot-specials .hotpot-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius-lg);
  box-shadow: var(--hotpot-shadow);
  padding: 36px 36px 28px 36px;
  margin-bottom: 32px;
}
.hotpot-specials__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotpot-specials__img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: var(--hotpot-radius);
  background: var(--hotpot-bg);
  box-shadow: var(--hotpot-shadow);
  border: var(--hotpot-border);
}
.hotpot-specials__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SECTION: Cycle */
.hotpot-cycle .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 32px 32px 20px 32px;
  margin-bottom: 32px;
}
.hotpot-steps {
  margin: 0;
  padding: 0 0 0 20px;
  counter-reset: hotpot-step;
}
.hotpot-steps li {
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
  line-height: 1.7;
}
.hotpot-steps li strong {
  color: var(--hotpot-orange);
}

/* SECTION: Design */
.hotpot-design .hotpot-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 36px 36px 28px 36px;
  margin-bottom: 32px;
}

/* SECTION: Features */
.hotpot-features .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius-lg);
  box-shadow: var(--hotpot-shadow);
  padding: 36px 36px 28px 36px;
  margin-bottom: 32px;
}
.hotpot-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hotpot-card-gap);
  margin-top: 32px;
}
.hotpot-feature {
  background: var(--hotpot-bg);
  border-radius: var(--hotpot-radius-sm);
  box-shadow: var(--hotpot-shadow);
  padding: 18px 14px 14px 16px;
  border-top: 2px solid var(--hotpot-orange);
  transition: box-shadow var(--hotpot-transition), transform var(--hotpot-transition);
  display: flex;
  flex-direction: column;
}
.hotpot-feature:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,26,0.12);
  transform: translateY(-3px) scale(1.025);
}
.hotpot-feature__title {
  font-size: 1.04rem;
  color: var(--hotpot-orange);
  font-weight: 700;
  margin-bottom: 10px;
}

/* SECTION: Screenshots */
.hotpot-screenshots .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 32px 32px 24px 32px;
  margin-bottom: 32px;
}
.hotpot-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 22px;
}
.hotpot-screenshot {
  background: var(--hotpot-bg);
  border-radius: var(--hotpot-radius-sm);
  box-shadow: var(--hotpot-shadow);
  padding: 10px 10px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: var(--hotpot-border-gray);
  transition: box-shadow var(--hotpot-transition), transform var(--hotpot-transition);
}
.hotpot-screenshot:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,26,0.12);
  transform: translateY(-2px) scale(1.03);
}
.hotpot-screenshot__img {
  width: 100%;
  max-width: 210px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--hotpot-radius-sm);
  margin-bottom: 8px;
}
.hotpot-screenshot__caption {
  font-size: 0.92em;
  color: #888;
  text-align: center;
}

/* SECTION: FAQ */
.hotpot-faq .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 32px 32px 24px 32px;
  margin-bottom: 32px;
}
.hotpot-faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 22px;
}
.hotpot-faq__item {
  background: var(--hotpot-bg);
  border-radius: var(--hotpot-radius-sm);
  box-shadow: var(--hotpot-shadow);
  padding: 16px 18px 12px 18px;
  border-left: 2px solid var(--hotpot-orange);
  transition: box-shadow var(--hotpot-transition), transform var(--hotpot-transition);
}
.hotpot-faq__item:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,26,0.12);
  transform: translateY(-2px) scale(1.02);
}
.hotpot-faq__q {
  font-size: 1.01rem;
  color: var(--hotpot-orange);
  font-weight: 700;
  margin-bottom: 7px;
}
.hotpot-faq__a {
  color: #23272f;
  line-height: 1.7;
}

/* SECTION: Reviews */
.hotpot-reviews .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius-lg);
  box-shadow: var(--hotpot-shadow);
  padding: 32px 32px 24px 32px;
  margin-bottom: 32px;
}
.hotpot-reviews__list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.hotpot-review {
  background: var(--hotpot-bg);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 18px 18px 14px 18px;
  border-left: 2px solid var(--hotpot-orange);
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 220px;
  font-style: italic;
  color: #23272f;
  transition: box-shadow var(--hotpot-transition), transform var(--hotpot-transition);
}
.hotpot-review__text strong {
  color: var(--hotpot-orange);
  font-style: normal;
}

/* SECTION: Conclusion */
.hotpot-conclusion .hotpot-section__inner {
  background: var(--hotpot-bg-alt);
  border-radius: var(--hotpot-radius);
  box-shadow: var(--hotpot-shadow);
  padding: 32px 32px 24px 32px;
  margin-bottom: 32px;
}

/* FOOTER */
.hotpot-footer {
  background: #fff;
  box-shadow: 0 -2px 16px 0 rgba(30,32,36,0.04);
  border-radius: var(--hotpot-radius-lg) var(--hotpot-radius-lg) 0 0;
  margin-top: 48px;
  padding: 0;
}
.hotpot-footer__inner {
  max-width: var(--hotpot-max-width);
  margin: 0 auto;
  padding: 36px 24px 24px 24px;
}
.hotpot-footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 32px;
}
.hotpot-footer__col {
  min-width: 0;
}
.hotpot-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 8px;
}
.hotpot-footer__logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--hotpot-bg);
  box-shadow: 0 1px 8px 0 rgba(255,122,26,0.10);
}
.hotpot-footer__site {
  font-weight: 700;
  font-size: 1.08em;
  color: var(--hotpot-orange);
}
.hotpot-footer__about,
.hotpot-footer__copyright,
.hotpot-footer__note {
  color: #888;
  font-size: 0.95em;
  margin-bottom: 8px;
}
.hotpot-footer__copyright {
  margin-top: 18px;
}
.hotpot-footer__title {
  color: var(--hotpot-orange);
  font-weight: 700;
  font-size: 1.01em;
  margin-bottom: 8px;
}
.hotpot-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hotpot-footer__links li {
  margin-bottom: 7px;
}
.hotpot-footer__links a {
  color: #23272f;
  text-decoration: none;
  border-radius: var(--hotpot-radius-sm);
  padding: 5px 0;
  transition: color var(--hotpot-transition), background var(--hotpot-transition);
}
.hotpot-footer__links a:hover {
  color: var(--hotpot-orange);
  background: var(--hotpot-orange-light);
}

/* MEDIA QUERIES */
@media (max-width: 1100px) {
  .hotpot-hero__cols,
  .hotpot-design .hotpot-section__inner,
  .hotpot-specials .hotpot-section__inner,
  .hotpot-world .hotpot-section__inner {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .hotpot-feature-cards,
  .hotpot-mechanics__grid,
  .hotpot-screenshots__grid,
  .hotpot-faq__list,
  .hotpot-footer__cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;
  }
}

@media (max-width: 800px) {
  .hotpot-header__inner {
    padding: 10px 12px;
  }
  .hotpot-section__inner,
  .hotpot-hero__container,
  .hotpot-footer__inner {
    padding: 0 10px;
  }
  .hotpot-hero,
  .hotpot-section,
  .hotpot-footer {
    padding: 38px 0 28px 0;
  }
  .hotpot-shortdesc .hotpot-section__inner,
  .hotpot-mechanics .hotpot-section__inner,
  .hotpot-cycle .hotpot-section__inner,
  .hotpot-screenshots .hotpot-section__inner,
  .hotpot-conclusion .hotpot-section__inner,
  .hotpot-faq .hotpot-section__inner,
  .hotpot-reviews .hotpot-section__inner {
    padding: 18px 8px 14px 8px;
  }
  .hotpot-world .hotpot-section__inner,
  .hotpot-specials .hotpot-section__inner,
  .hotpot-design .hotpot-section__inner,
  .hotpot-features .hotpot-section__inner,
  .hotpot-footer__inner {
    padding: 18px 8px 14px 8px;
  }
}

@media (max-width: 700px) {
  .hotpot-header__menu-btn {
    display: block;
  }
  .hotpot-nav {
    display: none;
  }
  .hotpot-mobile-menu {
    display: block;
  }

  .hotpot-hero__cols {
    flex-direction: column;
    gap: 24px;
  }
  .hotpot-visual-grid {
    grid-template-columns: 80px 80px;
    grid-template-rows: 80px 80px;
    gap: 10px;
  }
  .hotpot-feature-cards,
  .hotpot-mechanics__grid,
  .hotpot-screenshots__grid,
  .hotpot-faq__list,
  .hotpot-footer__cols {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .hotpot-reviews__list {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 500px) {
  .hotpot-hero__title {
    font-size: 1.2rem;
  }
  .hotpot-section__title {
    font-size: 1.05rem;
  }
  .hotpot-btn {
    font-size: 0.97rem;
    padding: 9px 16px;
  }
  .hotpot-visual-grid__img,
  .hotpot-world__img,
  .hotpot-specials__img {
    width: 80px !important;
    height: 80px !important;
    min-width: 60px;
    min-height: 60px;
  }
}

/* Scrollbar Styling (optional, for modern look) */
::-webkit-scrollbar {
  width: 10px;
  background: var(--hotpot-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--hotpot-orange-light);
  border-radius: 8px;
}

**Примітки:**
- Дизайн використовує grid/flex для різних секцій, плавні тіні, радіуси, компактний текст, сучасні кнопки, акцентний колір — помаранчевий.
- На мобільних — усі сітки розгортаються у стовпчик, меню адаптується.
- У списках з псевдоелементами прибрано list-style.
- Картковий вигляд для контенту, різні border-radius, padding, margin для динаміки.
- Максимальна ширина контенту — 1240px.
- Є плавні transition для інтерактивних елементів.
- Весь CSS готовий для вставки у `<style>`.