:root {
  --doom-bg: #18191c;
  --doom-bg-gradient: linear-gradient(135deg, rgba(30,31,33,0.96) 0%, rgba(24,25,28,0.98) 100%);
  --doom-bg-gradient-light: linear-gradient(135deg, rgba(30,31,33,0.75) 0%, rgba(24,25,28,0.85) 100%);
  --doom-card-bg: rgba(32,33,36, 0.96);
  --doom-card-gradient: linear-gradient(120deg, rgba(40, 41, 44, 0.92) 0%, rgba(28, 29, 32, 0.98) 100%);
  --doom-shadow: 0 4px 32px 0 rgba(0,0,0,0.32), 0 1.5px 6px 0 rgba(255,0,0,0.04);
  --doom-shadow-light: 0 2px 12px 0 rgba(0,0,0,0.14);
  --doom-border: 1px solid #c60c1e;
  --doom-accent: #c60c1e;
  --doom-accent-rgb: 198,12,30;
  --doom-accent-hover: #e42b3c;
  --doom-text: #e8e8e8;
  --doom-text-light: #f7f7f7;
  --doom-muted: #b3b3b7;
  --doom-radius: 18px;
  --doom-radius-lg: 32px;
  --doom-radius-sm: 8px;
  --doom-gap: 32px;
  --doom-gap-sm: 18px;
  --doom-gap-xs: 8px;
  --doom-max-width: 1240px;
  --doom-btn-padding: 0.75em 2.2em;
  --doom-btn-radius: 12px;
  --doom-btn-font: 600 14px/1.2 'Inter', 'Segoe UI', Arial, sans-serif;
  --doom-transition: 0.18s cubic-bezier(.4,0,.2,1);
  --doom-header-h: 68px;
  --doom-footer-bg: #141416;
  --doom-footer-gradient: linear-gradient(90deg, rgba(24,25,28,0.98) 0%, rgba(30,31,33,0.96) 100%);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--doom-bg-gradient);
  color: var(--doom-text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
  letter-spacing: 0.01em;
}

body.doom-page {
  background: var(--doom-bg-gradient);
  color: var(--doom-text);
}

/* Header */
.doom-header {
  background: var(--doom-bg-gradient-light);
  box-shadow: var(--doom-shadow-light);
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--doom-header-h);
}

.doom-header__inner {
  max-width: var(--doom-max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--doom-header-h);
}

.doom-logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  transition: filter var(--doom-transition);
}

.doom-logo__img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(198,12,30,0.11);
  background: #222;
  object-fit: cover;
  transition: box-shadow var(--doom-transition);
}

.doom-logo:hover .doom-logo__img {
  box-shadow: 0 4px 24px 0 rgba(198,12,30,0.19);
  filter: brightness(1.18);
}

.doom-nav {
  flex: 1;
}

.doom-nav__list {
  display: flex;
  gap: 0.5em 24px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doom-nav__item {
  margin: 0;
}

.doom-nav__link {
  color: var(--doom-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 0.3em 0.9em;
  border-radius: var(--doom-radius-sm);
  transition: color var(--doom-transition), background var(--doom-transition);
  position: relative;
}

.doom-nav__link:hover, .doom-nav__link:focus {
  background: rgba(var(--doom-accent-rgb), 0.13);
  color: var(--doom-accent-hover);
}

/* Section base */
.doom-section {
  padding: 56px 0 48px 0;
  background: none;
  position: relative;
}

.doom-section__inner {
  max-width: var(--doom-max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: var(--doom-gap);
}

/* HERO */
.doom-hero {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--doom-bg-gradient);
  min-height: 520px;
  box-shadow: var(--doom-shadow);
  border-radius: 0 0 var(--doom-radius-lg) var(--doom-radius-lg);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.doom-hero__media {
  flex: 1.2;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
}

.doom-hero__video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 0 0 0 var(--doom-radius-lg);
  filter: brightness(0.82) grayscale(0.12) contrast(1.13);
  box-shadow: 0 0 0 0 transparent;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 0;
  opacity: 0.95;
}

.doom-hero__image--accent {
  position: relative;
  z-index: 2;
  max-width: 220px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--doom-radius);
  margin: 0 32px 32px 0;
  box-shadow: 0 8px 44px 0 rgba(198,12,30,0.13);
  background: #232325;
}

.doom-hero__content {
  flex: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 48px 0 48px 48px;
  position: relative;
  z-index: 2;
}

.doom-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--doom-text-light);
  margin: 0 0 0.3em 0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.doom-hero__tagline {
  font-size: 1.1rem;
  color: var(--doom-muted);
  margin-bottom: 1.2em;
  font-weight: 400;
}

.doom-hero__meta {
  display: flex;
  gap: 18px;
  color: var(--doom-muted);
  font-size: 13px;
  margin-bottom: 1.2em;
}

.doom-hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 1.6em;
}

.doom-hero__image--decor {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  max-height: 140px;
  object-fit: contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
}

/* Buttons */
.doom-btn {
  display: inline-block;
  background: var(--doom-accent);
  color: #fff;
  font: var(--doom-btn-font);
  border: none;
  border-radius: var(--doom-btn-radius);
  padding: var(--doom-btn-padding);
  box-shadow: 0 2px 18px 0 rgba(198,12,30,0.13);
  cursor: pointer;
  transition: 
    background var(--doom-transition),
    color var(--doom-transition),
    box-shadow var(--doom-transition),
    transform var(--doom-transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  outline: none;
}

.doom-btn:hover, .doom-btn:focus {
  background: #fff;
  color: var(--doom-accent);
  box-shadow: 0 4px 24px 0 rgba(198,12,30,0.23);
  transform: translateY(-2px) scale(1.04);
}

.doom-btn--primary {
  background: linear-gradient(90deg, var(--doom-accent) 0%, #e42b3c 100%);
  color: #fff;
  font-weight: 700;
}

.doom-btn--primary:hover, .doom-btn--primary:focus {
  background: #fff;
  color: var(--doom-accent);
}

/* WORLD SECTION */
.doom-world .doom-section__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr;
  gap: var(--doom-gap);
  align-items: stretch;
}

.doom-world__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.doom-world__img {
  width: 100%;
  max-width: 340px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  background: #232325;
}

.doom-world__content {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius);
  box-shadow: var(--doom-shadow-light);
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doom-world__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.2em;
  color: var(--doom-text-light);
}

.doom-world__lead {
  font-size: 1.04em;
  color: var(--doom-muted);
  margin-bottom: 0.7em;
}

.doom-world__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doom-world__list > li {
  position: relative;
  padding-left: 0;
  background: none;
}

.doom-world__list > li > ul {
  margin: 0.2em 0 0.5em 0.7em;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doom-world__list > li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--doom-accent);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
  box-shadow: 0 0 0 2px rgba(198,12,30,0.09);
}

.doom-world__list > li > ul > li::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--doom-accent);
  margin-right: 7px;
  vertical-align: middle;
  margin-bottom: 1px;
  box-shadow: 0 0 0 1px rgba(198,12,30,0.08);
}

/* MECHANICS SECTION */
.doom-mechanics .doom-section__inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: var(--doom-gap);
  align-items: stretch;
}

.doom-mechanics__content {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  padding: 40px 38px 38px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.doom-mechanics__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2em;
  color: var(--doom-text-light);
}

.doom-mechanics__intro {
  color: var(--doom-muted);
  margin-bottom: 0.7em;
}

.doom-mechanics__subtitle {
  font-size: 1.08em;
  font-weight: 600;
  margin: 0.7em 0 0.2em 0;
  color: var(--doom-accent);
}

.doom-mechanics__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doom-mechanics__list > li {
  position: relative;
  padding-left: 0;
  color: var(--doom-text);
}

.doom-mechanics__list > li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--doom-accent);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
  box-shadow: 0 0 0 2px rgba(198,12,30,0.08);
}

.doom-mechanics__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.doom-mechanics__img {
  width: 100%;
  max-width: 300px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--doom-radius);
  box-shadow: var(--doom-shadow-light);
  background: #232325;
}

/* GALLERY SECTION */
.doom-gallery .doom-section__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}

.doom-gallery__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--doom-text-light);
  margin-bottom: 0.2em;
}

.doom-gallery__lead {
  color: var(--doom-muted);
  margin-bottom: 1em;
}

.doom-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.doom-gallery__item {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius);
  box-shadow: var(--doom-shadow-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow var(--doom-transition), transform var(--doom-transition);
}

.doom-gallery__item:hover, .doom-gallery__item:focus-within {
  box-shadow: 0 8px 36px 0 rgba(198,12,30,0.12);
  transform: translateY(-2px) scale(1.03);
}

.doom-gallery__shot {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #232325;
  border-radius: var(--doom-radius) var(--doom-radius) 0 0;
  display: block;
}

.doom-gallery__caption {
  font-size: 13px;
  color: var(--doom-muted);
  padding: 10px 12px 12px 12px;
  background: none;
  border-radius: 0 0 var(--doom-radius) var(--doom-radius);
}

/* RHYTHM SECTION */
.doom-rhythm .doom-section__inner {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  padding: 38px 38px 34px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.doom-rhythm__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--doom-text-light);
  margin-bottom: 0.2em;
}

.doom-rhythm__steps {
  margin: 0 0 1.2em 0;
  padding: 0 0 0 1.1em;
  color: var(--doom-text);
  counter-reset: doom-step;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doom-rhythm__steps > li {
  position: relative;
  padding-left: 0.5em;
  font-size: 14px;
}

.doom-rhythm__steps > li::marker { color: var(--doom-accent); font-weight: bold; }

.doom-rhythm__why {
  color: var(--doom-muted);
  font-size: 13.5px;
}

/* FEATURES SECTION */
.doom-features .doom-section__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: var(--doom-gap);
  align-items: stretch;
}

.doom-features__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.doom-features__img {
  width: 100%;
  max-width: 260px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  background: #232325;
}

.doom-features__content {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius);
  box-shadow: var(--doom-shadow-light);
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doom-features__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--doom-text-light);
  margin-bottom: 0.2em;
}

.doom-features__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.doom-features__list > li {
  position: relative;
  padding-left: 0;
  color: var(--doom-text);
}

.doom-features__list > li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--doom-accent);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
  box-shadow: 0 0 0 2px rgba(198,12,30,0.09);
}

/* CONTENT SECTION */
.doom-content .doom-section__inner {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  padding: 38px 38px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.doom-content__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--doom-text-light);
  margin-bottom: 0.2em;
}

.doom-content__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doom-content__list > li {
  position: relative;
  padding-left: 0;
  color: var(--doom-text);
}

.doom-content__list > li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--doom-accent);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
  box-shadow: 0 0 0 2px rgba(198,12,30,0.08);
}

/* REVIEWS SECTION */
.doom-reviews .doom-section__inner {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  padding: 38px 38px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.doom-reviews__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--doom-text-light);
  margin-bottom: 0.2em;
}

.doom-reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.doom-review {
  background: var(--doom-card-bg);
  border-radius: var(--doom-radius);
  box-shadow: var(--doom-shadow-light);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  transition: box-shadow var(--doom-transition), transform var(--doom-transition);
  border-left: 3px solid var(--doom-accent);
}

.doom-review:hover, .doom-review:focus-within {
  box-shadow: 0 8px 36px 0 rgba(198,12,30,0.13);
  transform: translateY(-2px) scale(1.03);
}

.doom-review__name {
  font-size: 1.08em;
  font-weight: 600;
  color: var(--doom-accent);
  margin: 0 0 0.2em 0;
}

.doom-review__type {
  font-size: 12.5px;
  color: var(--doom-muted);
  margin-bottom: 0.2em;
}

.doom-review__text {
  font-size: 13.5px;
  color: var(--doom-text);
  margin: 0;
}

.doom-reviews__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--doom-muted);
  margin-top: 1em;
}

.doom-reviews__stats strong {
  color: var(--doom-accent);
  font-weight: 700;
}

/* FAQ SECTION */
.doom-faq .doom-section__inner {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  padding: 38px 38px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.doom-faq__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--doom-text-light);
  margin-bottom: 0.2em;
}

.doom-faq__list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 42px;
}

.doom-faq__list dt {
  font-weight: 600;
  color: var(--doom-accent);
  margin-top: 0.8em;
  margin-bottom: 0.2em;
  font-size: 13.5px;
}

.doom-faq__list dd {
  margin: 0 0 0.6em 0;
  color: var(--doom-text);
  font-size: 13.5px;
}

/* CTA SECTION */
.doom-cta .doom-section__inner {
  background: var(--doom-card-gradient);
  border-radius: var(--doom-radius-lg);
  box-shadow: var(--doom-shadow);
  padding: 38px 38px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.doom-cta__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--doom-text-light);
  margin-bottom: 0.2em;
}

.doom-cta__text {
  color: var(--doom-muted);
  font-size: 13.5px;
  margin-bottom: 1.2em;
}

.doom-cta__actions {
  display: flex;
  gap: 18px;
  margin-top: 0.6em;
}

/* FOOTER */
.doom-footer {
  background: var(--doom-footer-gradient);
  color: var(--doom-muted);
  font-size: 13px;
  padding: 0 0 0 0;
  margin-top: 48px;
  box-shadow: 0 -2px 16px 0 rgba(0,0,0,0.21);
}

.doom-footer__inner {
  max-width: var(--doom-max-width);
  margin: 0 auto;
  padding: 40px 32px 24px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 32px;
}

.doom-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doom-footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.doom-footer__logoimg {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(198,12,30,0.09);
  background: #232325;
  object-fit: cover;
}

.doom-footer__about {
  color: var(--doom-muted);
  font-size: 13px;
  margin: 0;
}

.doom-footer__heading {
  font-size: 1.08em;
  font-weight: 700;
  color: var(--doom-accent);
  margin-bottom: 0.5em;
}

.doom-footer__list,
.doom-footer__info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.doom-footer__list a {
  color: var(--doom-text);
  text-decoration: none;
  transition: color var(--doom-transition);
  font-weight: 500;
}

.doom-footer__list a:hover, .doom-footer__list a:focus {
  color: var(--doom-accent);
}

.doom-footer__info li {
  color: var(--doom-muted);
  font-size: 13px;
}

.doom-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 32px 14px 32px;
  text-align: center;
  font-size: 12.5px;
  color: #888;
  background: none;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .doom-header__inner, .doom-section__inner, .doom-footer__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .doom-hero__content {
    padding-left: 18px;
    padding-right: 0;
  }
}

@media (max-width: 1000px) {
  .doom-world .doom-section__inner,
  .doom-features .doom-section__inner {
    grid-template-columns: 1fr;
    gap: var(--doom-gap-sm);
  }
  .doom-mechanics .doom-section__inner {
    grid-template-columns: 1fr;
    gap: var(--doom-gap-sm);
  }
  .doom-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .doom-reviews__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .doom-faq__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .doom-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (max-width: 800px) {
  .doom-hero {
    flex-direction: column;
    min-height: 0;
    border-radius: 0 0 var(--doom-radius) var(--doom-radius);
  }
  .doom-hero__media {
    min-height: 220px;
    max-height: 280px;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
  }
  .doom-hero__video {
    border-radius: 0;
  }
  .doom-hero__image--accent {
    margin: 0 0 18px 0;
    max-width: 160px;
    max-height: 200px;
  }
  .doom-hero__content {
    padding: 24px 0 24px 0;
  }
}

@media (max-width: 650px) {
  .doom-header__inner {
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .doom-nav__list {
    gap: 0.5em 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .doom-section {
    padding: 32px 0 24px 0;
  }
  .doom-section__inner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .doom-gallery__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .doom-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 8px 14px 8px;
  }
  .doom-footer__bottom {
    padding: 12px 8px 8px 8px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .doom-hero__title,
  .doom-world__title,
  .doom-mechanics__title,
  .doom-gallery__title,
  .doom-rhythm__title,
  .doom-features__title,
  .doom-content__title,
  .doom-reviews__title,
  .doom-faq__title,
  .doom-cta__title {
    font-size: 1.08rem;
  }
  .doom-hero__content {
    padding: 12px 0 12px 0;
  }
  .doom-hero__meta {
    flex-direction: column;
    gap: 2px;
  }
}

/* Hide scrollbars for aesthetic */
body::-webkit-scrollbar {
  width: 8px;
  background: #232325;
}
body::-webkit-scrollbar-thumb {
  background: #232325;
  border-radius: 8px;
}