:root {
  --color-bg: #f6f7fa;
  --color-bg-alt: #f3f3f6;
  --color-bg-card: #fff;
  --color-accent: #ffe066;
  --color-accent-hover: #ffd700;
  --color-text: #232323;
  --color-text-light: #5a5a5a;
  --color-border: #e5e7eb;
  --color-shadow: rgba(60, 60, 120, 0.06);
  --color-gradient: linear-gradient(120deg, rgba(220,222,230,0.12) 0%, rgba(245,245,250,0.10) 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
  --container-max: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --shadow-card: 0 2px 16px 0 var(--color-shadow);
  --shadow-hover: 0 4px 24px 0 rgba(60,60,120,0.10);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: var(--font-size);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

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

/* Container */
.abmath-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.abmath-header {
  background: var(--color-bg-card);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: box-shadow var(--transition);
}

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

.abmath-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.abmath-logo__img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  background: var(--color-gradient);
}

.abmath-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.abmath-nav__link {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.abmath-nav__link:hover,
.abmath-nav__link:focus {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
}

/* HERO */
.abmath-hero {
  background: var(--color-bg-alt);
  background-image: var(--color-gradient);
  padding: 48px 0 32px 0;
  box-shadow: 0 2px 24px 0 var(--color-shadow);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.abmath-hero__wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.abmath-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abmath-hero__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.abmath-hero__tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.abmath-hero__cols {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
}

.abmath-hero__col {
  flex: 1 1 0;
  min-width: 0;
}

.abmath-hero__col--left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.abmath-hero__list {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.abmath-hero__list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 1.6;
}
.abmath-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 var(--color-shadow);
}

.abmath-hero__meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.abmath-hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.abmath-btn {
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  text-decoration: none;
  outline: none;
  letter-spacing: 0.01em;
}

.abmath-btn--primary {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}
.abmath-btn--primary:hover,
.abmath-btn--primary:focus {
  background: var(--color-accent-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-hover);
}

.abmath-btn--secondary {
  background: var(--color-bg-card);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}
.abmath-btn--secondary:hover,
.abmath-btn--secondary:focus {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-hover);
}

.abmath-hero__col--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.abmath-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.abmath-hero__image {
  width: 240px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px 0 var(--color-shadow);
  object-fit: cover;
  background: var(--color-gradient);
  transition: box-shadow var(--transition), transform var(--transition);
}
.abmath-hero__image--small {
  width: 120px;
  border-radius: var(--radius-md);
  margin-right: 24px;
  margin-top: -28px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
}
.abmath-hero__image:hover {
  box-shadow: 0 8px 32px 0 var(--color-shadow);
  transform: scale(1.03);
}

/* Features */
.abmath-features {
  background: var(--color-bg-card);
  background-image: var(--color-gradient);
  padding: 48px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-features__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-text);
  text-align: center;
}

.abmath-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.abmath-feature {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.abmath-feature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}

.abmath-feature__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: var(--color-gradient);
}

.abmath-feature__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.abmath-feature__text {
  font-size: 0.95em;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* How to play */
.abmath-play {
  background: var(--color-bg-alt);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-play__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--color-text);
  text-align: center;
}

.abmath-play__cols {
  display: flex;
  gap: 36px;
  justify-content: space-between;
}

.abmath-play__col {
  flex: 1 1 0;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.abmath-play__subtitle {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.abmath-play__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.abmath-play__list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text-light);
}
.abmath-play__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 var(--color-shadow);
}

.abmath-play__text {
  color: var(--color-text-light);
  font-size: 0.96em;
  line-height: 1.5;
}

/* World */
.abmath-world {
  background: var(--color-bg-card);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-world__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
  text-align: center;
}

.abmath-world__layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.abmath-world__main {
  flex: 2 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.abmath-world__intro {
  color: var(--color-text-light);
  font-size: 1em;
  margin-bottom: 8px;
  line-height: 1.6;
}

.abmath-world__subtitle {
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.abmath-world__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.abmath-world__list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-light);
}
.abmath-world__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 var(--color-shadow);
}

.abmath-world__aside {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.abmath-world__img {
  width: 320px;
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px 0 var(--color-shadow);
  background: var(--color-gradient);
}

/* Gameplay */
.abmath-gameplay {
  background: var(--color-bg-alt);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-gameplay__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-text);
  text-align: center;
}

.abmath-gameplay__steps {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 28px 20px 22px 32px;
  margin: 0 auto;
  max-width: 680px;
  font-size: 0.98em;
  color: var(--color-text-light);
  line-height: 1.7;
  counter-reset: gameplay;
}
.abmath-gameplay__steps li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 0;
  list-style: none;
}
.abmath-gameplay__steps li strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Contents */
.abmath-contents {
  background: var(--color-bg-card);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-contents__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-text);
  text-align: center;
}

.abmath-contents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.abmath-contents__card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 22px 16px 16px 16px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.abmath-contents__card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}
.abmath-contents__card h3 {
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}
.abmath-contents__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.abmath-contents__card ul li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-light);
}
.abmath-contents__card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 var(--color-shadow);
}

/* Screenshots */
.abmath-screenshots {
  background: var(--color-bg-alt);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-screenshots__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-text);
  text-align: center;
}

.abmath-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abmath-screenshot {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 14px 10px 10px 10px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.abmath-screenshot:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}
.abmath-screenshot__img {
  width: 100%;
  max-width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--color-gradient);
}
.abmath-screenshot__cap {
  font-size: 0.93em;
  color: var(--color-text-light);
  margin-top: 3px;
}

/* Impressions */
.abmath-impressions {
  background: var(--color-bg-card);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-impressions__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-text);
  text-align: center;
}

.abmath-impressions__grid {
  display: flex;
  gap: 36px;
  justify-content: center;
}

.abmath-impressions__grid > div {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 22px 16px 16px 16px;
  min-width: 0;
  flex: 1 1 0;
}

.abmath-impressions__grid h3 {
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}
.abmath-impressions__grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.abmath-impressions__grid ul li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-light);
}
.abmath-impressions__grid ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 var(--color-shadow);
}

/* Reviews */
.abmath-reviews {
  background: var(--color-bg-alt);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-reviews__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-text);
  text-align: center;
}

.abmath-reviews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.abmath-review {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 20px 16px;
  font-size: 0.97em;
  color: var(--color-text-light);
  line-height: 1.7;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.abmath-review:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}
.abmath-review__text {
  margin-bottom: 12px;
  font-style: italic;
}
.abmath-review__meta {
  font-size: 0.92em;
  color: var(--color-text);
  font-weight: 500;
  text-align: right;
}

/* FAQ */
.abmath-faq {
  background: var(--color-bg-card);
  background-image: var(--color-gradient);
  padding: 44px 0 32px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}

.abmath-faq__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-text);
  text-align: center;
}

.abmath-faq__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}

.abmath-faq__item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 24px 16px 16px 16px;
  min-width: 0;
}

.abmath-faq__item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}
.abmath-faq__item p {
  color: var(--color-text-light);
  font-size: 0.97em;
  line-height: 1.5;
}

/* CTA Download */
.abmath-cta {
  background: var(--color-bg-alt);
  background-image: var(--color-gradient);
  padding: 48px 0 36px 0;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  text-align: center;
}

.abmath-cta__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.abmath-cta__text {
  font-size: 1em;
  color: var(--color-text-light);
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.abmath-cta__btn {
  margin-top: 10px;
}

/* Footer */
.abmath-footer {
  background: var(--color-bg-card);
  background-image: var(--color-gradient);
  padding: 36px 0 22px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -2px 16px 0 var(--color-shadow);
  margin-top: 40px;
}

.abmath-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.abmath-footer__cols {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.abmath-footer__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abmath-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 8px;
}

.abmath-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--color-gradient);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
}

.abmath-footer__name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.1em;
}

.abmath-footer__desc {
  color: var(--color-text-light);
  font-size: 0.97em;
  margin-bottom: 6px;
}

.abmath-footer__copy {
  color: var(--color-text-light);
  font-size: 0.92em;
}

.abmath-footer__heading {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.abmath-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.abmath-footer__links li a {
  color: var(--color-text-light);
  text-decoration: none;
  padding: 4px 0;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}
.abmath-footer__links li a:hover,
.abmath-footer__links li a:focus {
  color: var(--color-text);
  background: var(--color-accent);
}

.abmath-footer__bottom {
  border-top: 1px solid var(--color-border);
  margin-top: 18px;
  padding-top: 12px;
  color: var(--color-text-light);
  font-size: 0.93em;
  text-align: center;
}

.abmath-footer__note {
  margin: 0;
  color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 1100px) {
  .abmath-features__grid,
  .abmath-contents__grid,
  .abmath-screenshots__grid,
  .abmath-reviews__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .abmath-footer__cols {
    flex-direction: column;
    gap: 24px;
  }
  .abmath-world__layout,
  .abmath-hero__cols,
  .abmath-play__cols,
  .abmath-impressions__grid {
    flex-direction: column;
    gap: 24px;
  }
  .abmath-world__aside,
  .abmath-hero__col--right {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .abmath-world__img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
  }
}

@media (max-width: 800px) {
  .abmath-header__inner {
    flex-direction: column;
    gap: 14px;
    padding: 12px 10px;
  }
  .abmath-nav__list {
    gap: 14px;
  }
  .abmath-hero__wrap,
  .abmath-footer__inner {
    padding: 0 10px;
  }
  .abmath-container {
    padding: 0 10px;
  }
  .abmath-features__grid,
  .abmath-contents__grid,
  .abmath-screenshots__grid,
  .abmath-reviews__list,
  .abmath-faq__items {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .abmath-footer {
    padding: 24px 0 14px 0;
  }
  .abmath-footer__cols {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .abmath-hero {
    padding: 26px 0 16px 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-bottom: 18px;
  }
  .abmath-features,
  .abmath-play,
  .abmath-world,
  .abmath-gameplay,
  .abmath-contents,
  .abmath-screenshots,
  .abmath-impressions,
  .abmath-reviews,
  .abmath-faq,
  .abmath-cta {
    padding: 22px 0 12px 0;
    border-radius: var(--radius-md);
    margin: 18px 0;
  }
  .abmath-header__inner {
    padding: 8px 4px;
  }
  .abmath-logo__img {
    width: 32px;
    height: 32px;
  }
  .abmath-hero__title {
    font-size: 1.2rem;
  }
  .abmath-hero__tagline {
    font-size: 1em;
  }
  .abmath-hero__image {
    width: 120px;
  }
  .abmath-hero__image--small {
    width: 70px;
    margin-right: 10px;
    margin-top: -12px;
  }
  .abmath-world__img {
    width: 100%;
    max-width: 100%;
    max-height: 120px;
  }
  .abmath-footer {
    padding: 14px 0 8px 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-top: 18px;
  }
  .abmath-footer__inner {
    padding: 0 4px;
  }
  .abmath-footer__logo {
    width: 24px;
    height: 24px;
  }
}