html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0F172A;
  color: #e5e7ef;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  min-height: 100%;
  box-sizing: border-box;
  line-height: 1.7;
  scroll-behavior: smooth;
}

body.happy-arrow-trip-body {
  background: linear-gradient(120deg, rgba(15,23,42,0.98) 0%, rgba(27,38,59,0.93) 100%);
  min-height: 100vh;
}

:root {
  --color-bg: #0F172A;
  --color-accent: #67E8F9;
  --color-card-bg: rgba(23, 31, 54, 0.94);
  --color-card-bg2: rgba(18, 24, 41, 0.96);
  --color-card-gradient: linear-gradient(120deg, rgba(103,232,249,0.03) 0%, rgba(103,232,249,0.01) 100%);
  --color-shadow: 0 2px 24px 0 rgba(0,0,0,0.12), 0 1.5px 8px 0 rgba(103,232,249,0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 7px;
  --max-width: 1240px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
}

main.happy-arrow-trip-main {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 20px 60px 20px;
}

/* HEADER */
.happy-arrow-trip-header {
  width: 100%;
  background: linear-gradient(90deg, rgba(15,23,42,0.98) 60%, rgba(103,232,249,0.04) 100%);
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 30;
}

.happy-arrow-trip-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 14px 20px 10px 20px;
  justify-content: space-between;
}

.happy-arrow-trip-logo img {
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(103,232,249,0.06);
  transition: box-shadow var(--transition);
}
.happy-arrow-trip-logo:hover img {
  box-shadow: 0 4px 16px 0 rgba(103,232,249,0.13);
}

.happy-arrow-trip-nav {
  display: flex;
  align-items: center;
}

.happy-arrow-trip-menu {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.happy-arrow-trip-menu-item {
  list-style: none;
}

.happy-arrow-trip-menu-link {
  color: #e5e7ef;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.happy-arrow-trip-menu-link:hover,
.happy-arrow-trip-menu-link:focus {
  background: rgba(103,232,249,0.10);
  color: var(--color-accent);
}

/* HERO */
.happy-arrow-trip-hero {
  margin-top: 36px;
  margin-bottom: 36px;
  background: linear-gradient(120deg, rgba(103,232,249,0.06) 0%, rgba(15,23,42,0.96) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--color-shadow);
  overflow: hidden;
  padding: 0;
}

.happy-arrow-trip-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.happy-arrow-trip-hero-col {
  padding: 38px 38px 38px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.happy-arrow-trip-hero-intro {
  background: var(--color-card-bg);
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(103,232,249,0.04);
}

.happy-arrow-trip-hero-title,
.happy-arrow-trip-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.1;
}

.happy-arrow-trip-subtitle {
  font-size: 1.08rem;
  color: #67E8F9;
  margin-bottom: 22px;
  font-weight: 500;
  opacity: 0.92;
}

.happy-arrow-trip-quickinfo {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}
.happy-arrow-trip-quickinfo li {
  position: relative;
  padding-left: 18px;
  color: #bae6fd;
  font-weight: 400;
  font-size: 13px;
}
.happy-arrow-trip-quickinfo li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}

.happy-arrow-trip-shortdesc {
  color: #cbd5e1;
  margin-bottom: 24px;
  margin-top: 0;
}

.happy-arrow-trip-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.happy-arrow-trip-playstore-button,
.happy-arrow-trip-anchor-button {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  background: var(--color-accent);
  color: #0F172A;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 28px;
  box-shadow: 0 2px 10px 0 rgba(103,232,249,0.13);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
  text-align: center;
  letter-spacing: 0.02em;
}
.happy-arrow-trip-playstore-button:hover,
.happy-arrow-trip-anchor-button:hover,
.happy-arrow-trip-playstore-button:focus,
.happy-arrow-trip-anchor-button:focus {
  background: #0F172A;
  color: var(--color-accent);
  box-shadow: 0 4px 20px 0 rgba(103,232,249,0.19);
  border: 1px solid var(--color-accent);
}

.happy-arrow-trip-hero-visuals {
  background: var(--color-card-bg2);
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 38px 38px 38px 38px;
  position: relative;
}

.happy-arrow-trip-hero-image {
  width: 100%;
  max-width: 340px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  box-shadow: 0 4px 32px 0 rgba(103,232,249,0.09);
}

.happy-arrow-trip-hero-stats {
  display: flex;
  gap: 22px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.happy-arrow-trip-stat {
  background: rgba(103,232,249,0.08);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  min-width: 90px;
  text-align: center;
  color: #e0f2fe;
  font-size: 13px;
  box-shadow: 0 1px 6px 0 rgba(103,232,249,0.05);
}
.happy-arrow-trip-stat strong {
  display: block;
  font-size: 12px;
  color: #67E8F9;
  font-weight: 600;
  margin-bottom: 2px;
}

/* SCREENSHOTS */
.happy-arrow-trip-screenshots {
  margin: 46px 0 46px 0;
}
.happy-arrow-trip-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 0 0;
}

.happy-arrow-trip-heading {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.happy-arrow-trip-lead {
  color: #bae6fd;
  margin-bottom: 22px;
  font-size: 1.01rem;
}

.happy-arrow-trip-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.happy-arrow-trip-shot {
  background: var(--color-card-bg2);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 10px 10px 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.happy-arrow-trip-shot:hover {
  box-shadow: 0 6px 36px 0 rgba(103,232,249,0.13), 0 2px 12px 0 rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.025);
}
.happy-arrow-trip-shot img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 9px;
  max-height: 140px;
}
.happy-arrow-trip-shot figcaption {
  color: #67E8F9;
  font-size: 12px;
  text-align: center;
  margin-top: 2px;
  opacity: 0.92;
}

/* WORLD */
.happy-arrow-trip-world {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-world-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  margin-top: 18px;
}
.happy-arrow-trip-world-col {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
.happy-arrow-trip-world-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.happy-arrow-trip-world-col h3 {
  color: #67E8F9;
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 1.08rem;
  font-weight: 700;
}
.happy-arrow-trip-world-col p, .happy-arrow-trip-world-col ul {
  margin-bottom: 13px;
}

.happy-arrow-trip-world-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 13px 0;
}
.happy-arrow-trip-world-col ul li {
  position: relative;
  padding-left: 18px;
  color: #bae6fd;
  font-size: 13px;
  margin-bottom: 5px;
}
.happy-arrow-trip-world-col ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

/* MECHANICS */
.happy-arrow-trip-mechanics {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-mechanics-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  margin-top: 18px;
}
.happy-arrow-trip-mech-col {
  background: var(--color-card-bg2);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 28px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.happy-arrow-trip-mech-col h3 {
  color: #67E8F9;
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 1.08rem;
  font-weight: 700;
}
.happy-arrow-trip-mech-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 13px 0;
}
.happy-arrow-trip-mech-col ul li {
  position: relative;
  padding-left: 18px;
  color: #bae6fd;
  font-size: 13px;
  margin-bottom: 5px;
}
.happy-arrow-trip-mech-col ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}
.happy-arrow-trip-mech-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  box-shadow: 0 2px 12px 0 rgba(103,232,249,0.07);
}

/* FEATURES */
.happy-arrow-trip-features {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 18px;
}
.happy-arrow-trip-feature {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--color-shadow);
  padding: 30px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.happy-arrow-trip-feature:hover {
  box-shadow: 0 8px 40px 0 rgba(103,232,249,0.13), 0 2px 12px 0 rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.015);
}
.happy-arrow-trip-feature h4 {
  color: #67E8F9;
  margin: 0 0 7px 0;
  font-size: 1.05rem;
  font-weight: 700;
}
.happy-arrow-trip-feature p {
  color: #cbd5e1;
  margin: 0 0 5px 0;
  font-size: 13px;
}
.happy-arrow-trip-feature-image {
  width: 100%;
  max-height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-top: 13px;
  box-shadow: 0 2px 12px 0 rgba(103,232,249,0.07);
}

/* RHYTHM */
.happy-arrow-trip-rhythm {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-steps {
  background: var(--color-card-bg2);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 18px 18px 18px 28px;
  margin-bottom: 22px;
  font-size: 13px;
}
.happy-arrow-trip-steps li {
  margin-bottom: 7px;
  color: #bae6fd;
}
.happy-arrow-trip-rhythm ul {
  background: var(--color-card-bg2);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 14px 18px 14px 28px;
  margin-bottom: 22px;
  font-size: 13px;
  list-style: none;
}
.happy-arrow-trip-rhythm ul li {
  position: relative;
  padding-left: 16px;
  color: #bae6fd;
  margin-bottom: 4px;
}
.happy-arrow-trip-rhythm ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

/* CONTENT */
.happy-arrow-trip-content {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-content-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}
.happy-arrow-trip-content-list li {
  background: var(--color-card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--color-shadow);
  padding: 12px 16px;
  font-size: 13px;
  color: #bae6fd;
  position: relative;
  margin-bottom: 0;
  min-width: 0;
}
.happy-arrow-trip-content-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 15px;
}
.happy-arrow-trip-content-list li {
  padding-left: 26px;
}
.happy-arrow-trip-monetization-note {
  color: #67E8F9;
  font-size: 13px;
  margin-top: 5px;
  background: linear-gradient(90deg, rgba(103,232,249,0.07), rgba(15,23,42,0.90));
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  box-shadow: 0 1px 8px 0 rgba(103,232,249,0.03);
}

/* FAQ */
.happy-arrow-trip-faq {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 18px;
}
.happy-arrow-trip-faq-item {
  background: var(--color-card-bg2);
  border-radius: var(--radius-md);
  box-shadow: var(--color-shadow);
  padding: 22px 20px 16px 20px;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.happy-arrow-trip-faq-item:hover {
  box-shadow: 0 6px 36px 0 rgba(103,232,249,0.13), 0 2px 12px 0 rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.015);
}
.happy-arrow-trip-faq-item h4 {
  color: #67E8F9;
  margin: 0 0 6px 0;
  font-size: 1.01rem;
  font-weight: 700;
}
.happy-arrow-trip-faq-item p {
  color: #cbd5e1;
  margin: 0;
  font-size: 13px;
}

/* IMPRESSION */
.happy-arrow-trip-impression {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-impression .happy-arrow-trip-section-inner {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--color-shadow);
  padding: 36px 28px 28px 28px;
}
.happy-arrow-trip-impression h3 {
  color: #67E8F9;
  margin-top: 24px;
  margin-bottom: 7px;
  font-size: 1.08rem;
  font-weight: 700;
}
.happy-arrow-trip-impression ul {
  list-style: none;
  padding: 0;
  margin: 0 0 13px 0;
}
.happy-arrow-trip-impression ul li {
  position: relative;
  padding-left: 18px;
  color: #bae6fd;
  font-size: 13px;
  margin-bottom: 5px;
}
.happy-arrow-trip-impression ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

/* VOICES */
.happy-arrow-trip-voices {
  margin: 50px 0 50px 0;
}
.happy-arrow-trip-voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 18px;
}
.happy-arrow-trip-voice {
  background: var(--color-card-bg2);
  border-radius: var(--radius-lg);
  box-shadow: var(--color-shadow);
  padding: 30px 24px 24px 24px;
  color: #e0f2fe;
  font-size: 1.01rem;
  font-style: italic;
  min-width: 0;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.happy-arrow-trip-voice:hover {
  box-shadow: 0 8px 40px 0 rgba(103,232,249,0.13), 0 2px 12px 0 rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.015);
}
.happy-arrow-trip-voice cite {
  display: block;
  color: #67E8F9;
  font-size: 13px;
  font-style: normal;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* FOOTER */
.happy-arrow-trip-footer {
  background: linear-gradient(90deg, rgba(15,23,42,0.98) 60%, rgba(103,232,249,0.04) 100%);
  color: #cbd5e1;
  padding: 0;
  margin-top: 60px;
  box-shadow: 0 -2px 18px 0 rgba(0,0,0,0.10);
}
.happy-arrow-trip-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 38px 20px 14px 20px;
}
.happy-arrow-trip-footer-col {
  min-width: 0;
}
.happy-arrow-trip-footer-logo img {
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(103,232,249,0.06);
  transition: box-shadow var(--transition);
}
.happy-arrow-trip-footer-logo:hover img {
  box-shadow: 0 4px 16px 0 rgba(103,232,249,0.13);
}
.happy-arrow-trip-footer-col h4 {
  color: #67E8F9;
  margin: 0 0 10px 0;
  font-size: 1.01rem;
  font-weight: 700;
}
.happy-arrow-trip-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.happy-arrow-trip-footer-link {
  color: #bae6fd;
  display: inline-block;
  padding: 4px 0;
  transition: color var(--transition);
  font-size: 13px;
}
.happy-arrow-trip-footer-link:hover {
  color: var(--color-accent);
}
.happy-arrow-trip-footer-bottom {
  text-align: center;
  color: #64748b;
  font-size: 12px;
  padding: 14px 0 18px 0;
  margin-top: 14px;
  border-top: 1px solid rgba(103,232,249,0.06);
}

/* COOKIE */
.happy-arrow-trip-cookie {
  position: fixed;
  z-index: 1000;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(100deg, rgba(15,23,42,0.97) 80%, rgba(103,232,249,0.07) 100%);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  border-radius: var(--radius-lg);
  padding: 0;
  min-width: 0;
  max-width: 98vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 1;
}
.happy-arrow-trip-cookie-inner {
  padding: 22px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.happy-arrow-trip-cookie p {
  color: #e0f2fe;
  margin: 0 0 8px 0;
  font-size: 13px;
}
.happy-arrow-trip-cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.happy-arrow-trip-cookie-button {
  background: var(--color-accent);
  color: #0F172A;
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.happy-arrow-trip-cookie-button:hover,
.happy-arrow-trip-cookie-button:focus {
  background: #0F172A;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .happy-arrow-trip-hero-grid,
  .happy-arrow-trip-world-grid,
  .happy-arrow-trip-mechanics-grid {
    grid-template-columns: 1fr;
  }
  .happy-arrow-trip-hero-col,
  .happy-arrow-trip-hero-visuals,
  .happy-arrow-trip-hero-intro,
  .happy-arrow-trip-world-col,
  .happy-arrow-trip-mech-col {
    border-radius: var(--radius-md) !important;
    padding: 28px 18px;
  }
  .happy-arrow-trip-hero-image,
  .happy-arrow-trip-world-image,
  .happy-arrow-trip-mech-image {
    max-width: 100%;
    max-height: 220px;
  }
  .happy-arrow-trip-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .happy-arrow-trip-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .happy-arrow-trip-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .happy-arrow-trip-faq-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .happy-arrow-trip-voices-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .happy-arrow-trip-content-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 700px) {
  html, body {
    font-size: 13px;
  }
  main.happy-arrow-trip-main {
    padding: 0 4vw 32px 4vw;
  }
  .happy-arrow-trip-header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 10px 4vw 10px 4vw;
  }
  .happy-arrow-trip-menu {
    gap: 13px;
    flex-wrap: wrap;
  }
  .happy-arrow-trip-hero {
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
  }
  .happy-arrow-trip-hero-col,
  .happy-arrow-trip-hero-visuals,
  .happy-arrow-trip-hero-intro,
  .happy-arrow-trip-world-col,
  .happy-arrow-trip-mech-col {
    padding: 14px 7px;
  }
  .happy-arrow-trip-section-inner {
    padding: 0;
  }
  .happy-arrow-trip-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .happy-arrow-trip-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .happy-arrow-trip-footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 4vw 8px 4vw;
  }
  .happy-arrow-trip-footer-bottom {
    padding: 8px 0 12px 0;
    font-size: 11px;
  }
  .happy-arrow-trip-cookie {
    width: 95vw;
    left: 2.5vw;
    transform: none;
    bottom: 10px;
    padding: 0;
  }
  .happy-arrow-trip-cookie-inner {
    padding: 12px 12px 10px 12px;
  }
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #19223a;
}
::-webkit-scrollbar-thumb {
  background: #23304d;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #30405e;
}