:root {
  --hg-bg: #23242a;
  --hg-bg-gradient: linear-gradient(135deg, rgba(35,36,42,0.92) 60%, rgba(35,36,42,0.82) 100%);
  --hg-bg-card: #282930;
  --hg-bg-card-gradient: linear-gradient(120deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  --hg-bg-footer: #1b1c20;
  --hg-accent: #ffd600;
  --hg-accent-hover: #ffea70;
  --hg-accent-bg: rgba(255,214,0,0.10);
  --hg-border: #ffd600;
  --hg-border-light: rgba(255,214,0,0.25);
  --hg-text: #eaeaea;
  --hg-text-muted: #b8b8b8;
  --hg-shadow: 0 4px 32px 0 rgba(0,0,0,0.13), 0 1.5px 8px 0 rgba(0,0,0,0.09);
  --hg-radius: 18px;
  --hg-radius-card: 22px;
  --hg-radius-small: 10px;
  --hg-radius-large: 32px;
  --hg-padding: 28px;
  --hg-padding-sm: 16px;
  --hg-padding-xs: 8px;
  --hg-max-width: 1240px;
  --hg-transition: 0.22s cubic-bezier(.68,-0.55,.27,1.55);
  --hg-font: 'Inter', 'Segoe UI', 'Arial', sans-serif;
  --hg-h1-size: 2.6rem;
  --hg-h2-size: 1.7rem;
  --hg-h3-size: 1.25rem;
  --hg-h4-size: 1.08rem;
  --hg-text-size: 14px;
  --hg-ss-radius: 14px;
}

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

body.honeygrove-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--hg-bg-gradient);
}

/* Header */
.honeygrove-header {
  background: var(--hg-bg-card);
  box-shadow: var(--hg-shadow);
  border-bottom: 1px solid var(--hg-border-light);
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}

.honeygrove-header-inner {
  max-width: var(--hg-max-width);
  margin: 0 auto;
  padding: var(--hg-padding-xs) var(--hg-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.honeygrove-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hg-bg-card-gradient);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.11);
  object-fit: cover;
  transition: box-shadow var(--hg-transition);
}
.honeygrove-logo-img:hover {
  box-shadow: 0 2px 18px 0 var(--hg-accent-bg), 0 4px 32px 0 rgba(0,0,0,0.12);
}

.honeygrove-nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.honeygrove-nav-link {
  color: var(--hg-text);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: var(--hg-radius-small);
  transition: color var(--hg-transition), background var(--hg-transition);
  position: relative;
}
.honeygrove-nav-link:hover,
.honeygrove-nav-link:focus {
  color: var(--hg-bg);
  background: var(--hg-accent);
}

/* Main container */
.honeygrove-main {
  flex: 1 0 auto;
  width: 100%;
  background: transparent;
  padding-bottom: 32px;
}

/* Common Section Styles */
.honeygrove-section {
  margin: 0 auto 44px auto;
  max-width: var(--hg-max-width);
  padding: 0 var(--hg-padding);
  position: relative;
}

.honeygrove-inner {
  background: var(--hg-bg-card);
  background-image: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius-card);
  box-shadow: var(--hg-shadow);
  padding: var(--hg-padding);
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}

/* Titles */
.honeygrove-title,
.honeygrove-h2 {
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--hg-accent);
  margin-bottom: 12px;
}
.honeygrove-title {
  font-size: var(--hg-h1-size);
  margin-top: 0;
}
.honeygrove-h2 {
  font-size: var(--hg-h2-size);
  margin-top: 0;
  margin-bottom: 28px;
}
.honeygrove-inner h3 {
  font-size: var(--hg-h3-size);
  color: var(--hg-accent);
  margin-top: 22px;
  margin-bottom: 10px;
}
.honeygrove-inner h4 {
  font-size: var(--hg-h4-size);
  color: var(--hg-accent-hover);
  margin-top: 18px;
  margin-bottom: 7px;
}

/* Hero Section */
.honeygrove-hero {
  margin-bottom: 52px;
  padding-top: 32px;
  background: var(--hg-bg-card-gradient);
}

.honeygrove-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: stretch;
}

.honeygrove-hero-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.honeygrove-hero-col--left {
  gap: 18px;
}
.honeygrove-tagline {
  color: var(--hg-text-muted);
  margin-bottom: 18px;
  font-size: 1.05em;
  line-height: 1.45;
}

.honeygrove-hero-features {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.honeygrove-hero-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--hg-text);
  font-weight: 500;
  font-size: 1em;
}
.honeygrove-hero-features li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  background: var(--hg-accent);
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 0 2px var(--hg-accent-bg);
}

.honeygrove-hero-cta {
  display: flex;
  gap: 18px;
  margin: 18px 0 10px 0;
}
.honeygrove-button {
  background: var(--hg-accent);
  color: var(--hg-bg);
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: var(--hg-radius);
  font-size: 1.09em;
  cursor: pointer;
  box-shadow: 0 2px 18px 0 var(--hg-accent-bg);
  text-decoration: none;
  transition: background var(--hg-transition), color var(--hg-transition), box-shadow var(--hg-transition);
  outline: none;
}
.honeygrove-button:hover,
.honeygrove-button:focus {
  background: var(--hg-bg);
  color: var(--hg-accent);
  box-shadow: 0 2px 18px 0 var(--hg-accent-bg), 0 1.5px 8px 0 rgba(0,0,0,0.09);
}
.honeygrove-button--alt {
  background: transparent;
  color: var(--hg-accent);
  border: 1px solid var(--hg-accent);
  box-shadow: none;
}
.honeygrove-button--alt:hover,
.honeygrove-button--alt:focus {
  background: var(--hg-accent);
  color: var(--hg-bg);
  border-color: var(--hg-accent);
  box-shadow: 0 2px 18px 0 var(--hg-accent-bg);
}

.honeygrove-hero-note {
  color: var(--hg-text-muted);
  font-size: 0.98em;
  margin-top: 12px;
  line-height: 1.5;
}

.honeygrove-hero-col--right {
  align-items: flex-end;
  gap: 0;
}
.honeygrove-hero-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.honeygrove-hero-img--large {
  width: 330px;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--hg-radius-large);
  box-shadow: var(--hg-shadow);
  background: var(--hg-bg-card-gradient);
}
.honeygrove-hero-smallimgs {
  display: flex;
  gap: 10px;
}
.honeygrove-hero-img--small {
  width: 90px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  background: var(--hg-bg-card-gradient);
}

.honeygrove-quick-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.honeygrove-quick-link {
  color: var(--hg-accent);
  text-decoration: none;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--hg-radius-small);
  transition: background var(--hg-transition), color var(--hg-transition);
  font-size: 0.98em;
}
.honeygrove-quick-link:hover,
.honeygrove-quick-link:focus {
  background: var(--hg-accent-bg);
  color: var(--hg-accent-hover);
}

/* World Section */
.honeygrove-world-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: start;
}
.honeygrove-world-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.honeygrove-world-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.honeygrove-world-img {
  width: 100%;
  max-width: 240px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--hg-radius);
  box-shadow: var(--hg-shadow);
  background: var(--hg-bg-card-gradient);
}
.honeygrove-world-list {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius-small);
  padding: var(--hg-padding-xs) var(--hg-padding-sm);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
}
.honeygrove-world-list ul {
  margin: 0; padding: 0;
  list-style: none;
}
.honeygrove-world-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: var(--hg-text);
  font-size: 0.99em;
}
.honeygrove-world-list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--hg-accent);
  border-radius: 2px;
  opacity: 0.7;
}

.honeygrove-world-characters {
  margin-top: 32px;
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius-small);
  padding: var(--hg-padding-sm);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
.honeygrove-world-characters ul {
  margin: 0; padding: 0;
  list-style: none;
}
.honeygrove-world-characters li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.honeygrove-world-characters li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--hg-accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* Play Section */
.honeygrove-play-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.honeygrove-play-grid > div {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  padding: var(--hg-padding-sm);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
.honeygrove-play-grid ul {
  margin: 0; padding: 0;
  list-style: none;
}
.honeygrove-play-grid li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: var(--hg-text);
  font-size: 0.99em;
}
.honeygrove-play-grid li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--hg-accent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Features Section */
.honeygrove-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 10px;
}
.honeygrove-feature {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  padding: var(--hg-padding-sm) var(--hg-padding-xs);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
  transition: box-shadow var(--hg-transition), transform var(--hg-transition);
}
.honeygrove-feature:hover {
  box-shadow: 0 6px 24px 0 var(--hg-accent-bg), 0 2px 8px 0 rgba(0,0,0,0.07);
  transform: translateY(-2px) scale(1.012);
}

/* Rhythm Section */
.honeygrove-steps {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  padding: var(--hg-padding-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.honeygrove-steps ol,
.honeygrove-steps ul {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}
.honeygrove-steps ol li,
.honeygrove-steps ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
}
.honeygrove-steps ol li::before {
  content: counter(step) ".";
  counter-increment: step;
  position: absolute;
  left: 0; top: 1px;
  color: var(--hg-accent);
  font-weight: 700;
  font-size: 1em;
}
.honeygrove-steps ol {
  counter-reset: step;
}
.honeygrove-steps ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--hg-accent);
  border-radius: 50%;
  opacity: 0.7;
}

/* Content Section */
.honeygrove-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 32px;
}
.honeygrove-content-grid > div {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  padding: var(--hg-padding-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.honeygrove-content-grid ul {
  margin: 0; padding: 0;
  list-style: none;
}
.honeygrove-content-grid li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: var(--hg-text);
  font-size: 0.99em;
}
.honeygrove-content-grid li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--hg-accent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Feel Section */
.honeygrove-feel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.honeygrove-feel-grid > div {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  padding: var(--hg-padding-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.honeygrove-feel-grid ul {
  margin: 0; padding: 0;
  list-style: none;
}
.honeygrove-feel-grid li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: var(--hg-text);
  font-size: 0.99em;
}
.honeygrove-feel-grid li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--hg-accent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Screenshots Section */
.honeygrove-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 18px;
}
.honeygrove-ss {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-ss-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow var(--hg-transition), transform var(--hg-transition);
}
.honeygrove-ss img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--hg-ss-radius) var(--hg-ss-radius) 0 0;
  background: var(--hg-bg-card-gradient);
  transition: filter var(--hg-transition), transform var(--hg-transition);
}
.honeygrove-ss:hover img {
  filter: brightness(1.08) saturate(1.1);
  transform: scale(1.025);
}
.honeygrove-ss figcaption {
  font-size: 0.97em;
  color: var(--hg-text-muted);
  padding: 10px 14px 14px 14px;
  background: transparent;
}

/* Voices Section */
.honeygrove-voices-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.honeygrove-voice {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  padding: var(--hg-padding-sm);
  margin: 0;
  font-style: italic;
  color: var(--hg-text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.honeygrove-voice footer {
  font-size: 0.93em;
  color: var(--hg-accent-hover);
  margin-top: 10px;
  font-style: normal;
}
.honeygrove-dev-response {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius-small);
  box-shadow: 0 2px 8px 0 rgba(255,214,0,0.03);
  padding: var(--hg-padding-xs) var(--hg-padding-sm);
  color: var(--hg-accent-hover);
  font-size: 0.97em;
  margin-top: 0;
  align-self: start;
}

/* FAQ Section */
.honeygrove-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.honeygrove-faq-item {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  padding: var(--hg-padding-sm);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.honeygrove-faq-item h4 {
  color: var(--hg-accent);
  margin-bottom: 6px;
}

/* Conclusion Section */
.honeygrove-conclusion-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.honeygrove-conclusion-grid > div {
  background: var(--hg-bg-card-gradient);
  border-radius: var(--hg-radius);
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
  padding: var(--hg-padding-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.honeygrove-conclusion-grid ul {
  margin: 0; padding: 0;
  list-style: none;
}
.honeygrove-conclusion-grid li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: var(--hg-text);
  font-size: 0.99em;
}
.honeygrove-conclusion-grid li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--hg-accent);
  border-radius: 2px;
  opacity: 0.7;
}
.honeygrove-tip {
  background: var(--hg-accent-bg);
  border-radius: var(--hg-radius);
  color: var(--hg-bg);
  padding: var(--hg-padding-xs) var(--hg-padding-sm);
  margin-top: 8px;
  font-weight: 600;
}
.honeygrove-tip h4 {
  color: var(--hg-accent);
  margin-bottom: 4px;
}

/* Footer */
.honeygrove-footer {
  background: var(--hg-bg-footer);
  color: var(--hg-text-muted);
  padding: 0;
  margin-top: 44px;
  box-shadow: 0 -2px 16px 0 rgba(0,0,0,0.13);
}
.honeygrove-footer-inner {
  max-width: var(--hg-max-width);
  margin: 0 auto;
  padding: var(--hg-padding) var(--hg-padding);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.6fr;
  gap: 34px;
}
.honeygrove-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97em;
}
.honeygrove-footer-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hg-bg-card-gradient);
  margin-bottom: 7px;
}
.honeygrove-footer-col h4 {
  color: var(--hg-accent);
  margin-bottom: 7px;
  font-size: 1.02em;
}
.honeygrove-footer-col ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.honeygrove-footer-col a {
  color: var(--hg-accent);
  text-decoration: none;
  transition: color var(--hg-transition);
  font-weight: 500;
  font-size: 0.97em;
}
.honeygrove-footer-col a:hover,
.honeygrove-footer-col a:focus {
  color: var(--hg-accent-hover);
}
.honeygrove-footer-bottom {
  border-top: 1px solid var(--hg-border-light);
  padding: var(--hg-padding-xs) var(--hg-padding);
  text-align: center;
  font-size: 0.95em;
  color: var(--hg-text-muted);
  background: var(--hg-bg-footer);
}

/* Captions & Details */
.honeygrove-caption-intro {
  color: var(--hg-text-muted);
  margin-bottom: 8px;
  font-size: 0.98em;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .honeygrove-header-inner,
  .honeygrove-footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .honeygrove-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .honeygrove-inner {
    padding: 18px;
  }
  .honeygrove-hero-grid,
  .honeygrove-world-grid,
  .honeygrove-play-grid,
  .honeygrove-content-grid,
  .honeygrove-feel-grid,
  .honeygrove-conclusion-grid,
  .honeygrove-voices-grid,
  .honeygrove-footer-inner {
    gap: 18px;
  }
  .honeygrove-footer-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .honeygrove-hero-grid,
  .honeygrove-world-grid,
  .honeygrove-play-grid,
  .honeygrove-content-grid,
  .honeygrove-feel-grid,
  .honeygrove-conclusion-grid,
  .honeygrove-voices-grid,
  .honeygrove-footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .honeygrove-hero-col--right,
  .honeygrove-hero-col--left {
    align-items: flex-start;
  }
  .honeygrove-hero-images {
    align-items: flex-start;
  }
  .honeygrove-quick-actions {
    align-items: flex-start;
  }
  .honeygrove-footer-inner {
    padding: 18px 8px;
  }
}

@media (max-width: 700px) {
  .honeygrove-header-inner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .honeygrove-nav-list {
    gap: 12px;
  }
  .honeygrove-main {
    padding-bottom: 18px;
  }
  .honeygrove-inner {
    padding: 10px 4px;
  }
  .honeygrove-section {
    margin-bottom: 26px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .honeygrove-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .honeygrove-hero-col--right {
    align-items: flex-start;
  }
  .honeygrove-hero-img--large {
    width: 100%;
    height: 120px;
  }
  .honeygrove-hero-smallimgs {
    gap: 6px;
  }
  .honeygrove-hero-img--small {
    width: 70px;
    height: 48px;
  }
  .honeygrove-world-grid,
  .honeygrove-play-grid,
  .honeygrove-content-grid,
  .honeygrove-feel-grid,
  .honeygrove-conclusion-grid,
  .honeygrove-voices-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .honeygrove-world-img {
    max-width: 100%;
    max-height: 160px;
  }
  .honeygrove-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .honeygrove-footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 2px;
  }
  .honeygrove-footer-logo img {
    width: 32px;
    height: 32px;
  }
}

/* Hide scrollbars for a cleaner look (optional) */
body::-webkit-scrollbar {
  width: 8px;
  background: var(--hg-bg-card);
}
body::-webkit-scrollbar-thumb {
  background: var(--hg-accent-bg);
  border-radius: 8px;
}