*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #0a0a0a;
  color: #d4cfc4;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.fog-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.fog {
  position: absolute;
  width: 200%;
  height: 100%;
  opacity: 0.03;
  background: radial-gradient(ellipse at center, #d4cfc4 0%, transparent 70%);
}
.fog--1 {
  top: -20%;
  animation: fogDrift 25s ease-in-out infinite alternate;
}
.fog--2 {
  bottom: -30%;
  animation: fogDrift 30s ease-in-out infinite alternate-reverse;
}

@keyframes fogDrift {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(10%);
  }
}
.blood-drips {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 10;
  pointer-events: none;
}

.drip {
  position: absolute;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, #c41e1e, transparent);
  animation: drip 6s ease-in infinite;
  opacity: 0;
}
.drip::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c41e1e;
}

@keyframes drip {
  0% {
    height: 0;
    opacity: 0;
    top: 0;
  }
  10% {
    opacity: 0.7;
  }
  60% {
    height: 60px;
    opacity: 0.5;
    top: 0;
  }
  100% {
    height: 60px;
    opacity: 0;
    top: 80px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 80%, rgba(139, 0, 0, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 50% 0%, rgba(20, 0, 0, 0.6) 0%, transparent 50%);
}
.hero__content {
  will-change: transform, opacity;
}
.hero__tagline {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #7a756b;
  margin-bottom: 1.5rem;
}
.hero__title {
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero__logo {
  max-width: clamp(250px, 50vw, 500px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(139, 0, 0, 0.3)) drop-shadow(0 0 120px rgba(139, 0, 0, 0.1));
}
.hero__subtitle {
  font-family: "Cinzel", serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c41e1e;
  margin-bottom: 2rem;
}
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__divider span {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #7a756b, transparent);
}
.hero__bat {
  color: #8b0000;
  opacity: 0.6;
}
.hero__description {
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #7a756b;
  line-height: 1.8;
  text-align: center;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #7a756b;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
  animation: float 3s ease-in-out infinite;
}
.hero__scroll-hint:hover {
  color: #c41e1e;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f0ebe0;
  text-align: center;
  margin-bottom: 3rem;
}

.about {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: #0f0e0e;
  border-top: 1px solid rgba(139, 0, 0, 0.15);
  border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}
.about__container {
  max-width: 960px;
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 700px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}
.about__lore {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #d4cfc4;
  line-height: 1.9;
}
.about__lore strong {
  color: #c41e1e;
  font-weight: 600;
}
.about__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(122, 117, 107, 0.15);
  border-radius: 2px;
  background: rgba(10, 10, 10, 0.6);
  transition: border-color 0.4s;
}
.spec:hover {
  border-color: rgba(139, 0, 0, 0.4);
}
.spec__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.spec__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a756b;
  margin-bottom: 0.3rem;
}
.spec__value {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: #f0ebe0;
}

.video {
  position: relative;
  z-index: 2;
  padding: 0;
}
.video__container {
  max-width: 100%;
  margin: 0;
}
.video__wrapper {
  position: relative;
  width: 100vw;
  aspect-ratio: 16/9;
}
.video__wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.features {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
}
.features__container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 700px) {
  .features__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.feature {
  text-align: center;
}
.feature__icon {
  color: #8b0000;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.feature h3 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f0ebe0;
  margin-bottom: 0.8rem;
}
.feature p {
  font-size: 0.9rem;
  color: #7a756b;
  line-height: 1.8;
}

.gameplay {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
}
.gameplay__container {
  max-width: 960px;
  margin: 0 auto;
}
.gameplay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 700px) {
  .gameplay__grid {
    grid-template-columns: 1fr;
  }
}
.gameplay__item {
  text-align: center;
}
.gameplay__img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border-radius: 2px;
  display: block;
}
.gameplay__caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #7a756b;
  line-height: 1.7;
}

.testimonials {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: #0f0e0e;
  border-top: 1px solid rgba(139, 0, 0, 0.15);
  border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}
.testimonials__container {
  max-width: 960px;
  margin: 0 auto;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  padding: 2rem;
  border: 1px solid rgba(122, 117, 107, 0.1);
  border-left: 2px solid #8b0000;
  background: rgba(10, 10, 10, 0.5);
  transition: border-color 0.4s;
}
.testimonial:hover {
  border-color: rgba(139, 0, 0, 0.4);
  border-left-color: #c41e1e;
}
.testimonial__text {
  font-size: 0.95rem;
  font-style: italic;
  color: #d4cfc4;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.testimonial__text strong {
  color: #f0ebe0;
  font-style: normal;
  font-weight: 600;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial__name {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c41e1e;
}
.testimonial__role {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a756b;
}

.credits {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  text-align: center;
}
.credits__container {
  max-width: 960px;
  margin: 0 auto;
}
.credits__line {
  font-size: 0.85rem;
  color: #7a756b;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.credits__line strong {
  color: #d4cfc4;
  font-weight: 600;
}
.credits__line a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.credits__line a:hover {
  color: #c41e1e;
}

.backers {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  text-align: center;
  background: #0f0e0e;
  border-top: 1px solid rgba(139, 0, 0, 0.15);
  border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}
.backers__container {
  max-width: 960px;
  margin: 0 auto;
}
.backers__intro {
  max-width: 560px;
  margin: -1.5rem auto 3rem;
  font-size: 1rem;
  color: #7a756b;
  line-height: 1.8;
}
.backers__intro a {
  color: #c41e1e;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 30, 30, 0.4);
  transition: color 0.3s, border-color 0.3s;
}
.backers__intro a:hover {
  color: #f0ebe0;
  border-color: #f0ebe0;
}
.backers__list {
  columns: 3;
  column-gap: 2.5rem;
  list-style: none;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.backers__list li {
  font-family: "Great Vibes", cursive;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #d4cfc4;
  break-inside: avoid;
  transition: color 0.3s;
}
.backers__list li:hover {
  color: #c41e1e;
}
@media (max-width: 700px) {
  .backers__list {
    columns: 2;
    column-gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .backers {
    padding: 4rem 1.5rem;
  }
  .backers__list {
    columns: 1;
  }
}

.purchase {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.06) 0%, transparent 70%);
}
.purchase__hero-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2.5rem;
}
.purchase__container {
  max-width: 500px;
  margin: 0 auto;
}
.purchase__title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f0ebe0;
  margin-bottom: 0.8rem;
}
.purchase__text {
  font-size: 1rem;
  color: #7a756b;
  margin-bottom: 2.5rem;
}
.purchase__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0ebe0;
  text-decoration: none;
  border: 1px solid #8b0000;
  background: rgba(139, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
}
.purchase__btn:hover {
  background: rgba(139, 0, 0, 0.25);
  border-color: #c41e1e;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.3), 0 0 60px rgba(139, 0, 0, 0.1);
}
.purchase__btn.flicker {
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.5), 0 0 80px rgba(139, 0, 0, 0.2);
}
.purchase__btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
  transform: translateX(-100%);
}
.purchase__btn:hover .purchase__btn-glow {
  animation: btnSweep 0.6s ease-out forwards;
}
.purchase__note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a756b;
}

@keyframes btnSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.playlist {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  text-align: center;
  background: #0f0e0e;
  border-top: 1px solid rgba(139, 0, 0, 0.15);
  border-bottom: 1px solid rgba(139, 0, 0, 0.15);
}
.playlist__container {
  max-width: 720px;
  margin: 0 auto;
}
.playlist__intro {
  max-width: 620px;
  margin: -1.5rem auto 2.5rem;
  font-size: 1rem;
  color: #7a756b;
  line-height: 1.85;
}
.playlist__intro strong {
  color: #c41e1e;
  font-weight: 600;
}
.playlist__intro em {
  color: #d4cfc4;
  font-style: normal;
}
.playlist__embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.15);
  border: 1px solid rgba(139, 0, 0, 0.2);
}
.playlist__embed iframe {
  display: block;
  border: none;
}
.playlist__actions {
  margin-top: 2rem;
}
.playlist__btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0ebe0;
  text-decoration: none;
  border: 1px solid #8b0000;
  background: rgba(139, 0, 0, 0.1);
  transition: all 0.4s;
}
.playlist__btn:hover {
  background: rgba(139, 0, 0, 0.25);
  border-color: #c41e1e;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.3);
}
.playlist__note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #7a756b;
  font-style: italic;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(122, 117, 107, 0.1);
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.footer__socials a {
  color: #7a756b;
  transition: color 0.3s, transform 0.3s;
}
.footer__socials a:hover {
  color: #c41e1e;
  transform: translateY(-2px);
}
.footer p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(122, 117, 107, 0.5);
}
.footer p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer p a:hover {
  color: #c41e1e;
}

@media (max-width: 480px) {
  .hero__title {
    letter-spacing: 0.08em;
  }
  .about,
  .features,
  .purchase {
    padding: 4rem 1.5rem;
  }
  .purchase__btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}
