:root {
  --bg-start: #040006;
  --bg-mid: #10010f;
  --bg-end: #1b020e;
  --accent-red: #ff164a;
  --accent-blood: #b914ff;
  --accent-dark: #0a0206;
  --text-primary: #f5f1ff;
  --text-muted: rgba(245, 241, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 22, 74, 0.32);
  --shadow-strong: 0 35px 90px -35px rgba(255, 22, 74, 0.55);
  --shadow-soft: 0 25px 80px -40px rgba(185, 20, 255, 0.45);
}

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

html, body {
  background: radial-gradient(circle at 10% 10%, rgba(185, 20, 255, 0.18), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(255, 22, 74, 0.24), transparent 65%),
    linear-gradient(140deg, var(--bg-start), var(--bg-mid), var(--bg-end));
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 4rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-red);
}

.background-effects .orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.65;
  z-index: -2;
  animation: pulse 18s ease-in-out infinite;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 22, 74, 0.38), transparent 70%);
  top: -10vw;
  left: -12vw;
}

.orb-two {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(185, 20, 255, 0.25), transparent 75%);
  bottom: -20vw;
  right: -20vw;
  animation-duration: 26s;
}

.orb-three {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 96, 125, 0.25), transparent 70%);
  top: 40vh;
  left: 55vw;
  animation-duration: 22s;
}

.orb-four {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 22, 74, 0.18), transparent 70%);
  top: 70vh;
  right: 15vw;
  animation-duration: 28s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.hero {
  width: min(1100px, 90vw);
  margin: 0 auto;
  padding: 6rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__label {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: rgba(255, 22, 74, 0.75);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(2.8rem, 4vw + 1rem, 4.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 35px rgba(255, 22, 74, 0.45);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.9;
  margin-bottom: 2.4rem;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 22, 74, 0.45);
  background: rgba(255, 22, 74, 0.14);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero__button + .hero__button {
  margin-left: 0.8rem;
}

.hero__button--secondary {
  border-color: rgba(185, 20, 255, 0.35);
  background: rgba(185, 20, 255, 0.12);
}

.hero__button--secondary:hover {
  border-color: rgba(185, 20, 255, 0.6);
  box-shadow: 0 12px 30px -18px rgba(185, 20, 255, 0.55);
}

.hero__button:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 22, 74, 0.75);
  box-shadow: 0 12px 30px -18px rgba(255, 22, 74, 0.65);
}

.hero__media {
  display: flex;
  justify-content: center;
}

.logo-glow {
  position: relative;
  width: clamp(260px, 28vw, 360px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 22, 74, 0.15), rgba(16, 1, 15, 0.9));
  border: 1px solid rgba(255, 22, 74, 0.4);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.logo-glow::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(255, 22, 74, 0.4), rgba(185, 20, 255, 0.3), rgba(255, 22, 74, 0.4));
  filter: blur(35px);
  animation: rotateGlow 12s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-glow img {
  width: 70%;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65));
}

main {
  width: min(1100px, 90vw);
  margin: 0 auto 4rem;
}

.section {
  margin-top: 3.5rem;
  padding: 3rem;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(6, 0, 8, 0.75), rgba(30, 0, 20, 0.75));
  border: 1px solid rgba(255, 22, 74, 0.18);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 22, 74, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section__label {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 22, 74, 0.12);
  border: 1px solid rgba(255, 22, 74, 0.32);
  color: rgba(255, 22, 74, 0.8);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1.4rem;
}

.section h2 {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
  margin-bottom: 1.2rem;
}

.section p {
  font-size: 1.03rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.build__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin: 2rem 0 1.5rem;
}

.build__card {
  background: rgba(255, 22, 74, 0.08);
  border: 1px solid rgba(255, 22, 74, 0.25);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 15px 40px -25px rgba(255, 22, 74, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.build__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 22, 74, 0.6);
}

.build__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.build__card p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.themes__list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  padding: 0;
}

.themes__list li {
  background: rgba(255, 22, 74, 0.08);
  border: 1px solid rgba(255, 22, 74, 0.25);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.themes__list strong {
  color: var(--text-primary);
}

.quote {
  text-align: center;
  background: linear-gradient(150deg, rgba(10, 0, 12, 0.75), rgba(60, 0, 30, 0.75));
  border: 1px solid rgba(255, 22, 74, 0.28);
}

.quote blockquote {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(1.6rem, 1.2vw + 1rem, 2.2rem);
  line-height: 1.8;
  color: var(--text-primary);
}

.quote span {
  display: block;
  margin-top: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 22, 74, 0.6);
}

.footer {
  width: min(1100px, 90vw);
  margin: 4rem auto 0;
  padding: 1.8rem 2.4rem;
  border-radius: 20px;
  background: rgba(10, 0, 12, 0.75);
  border: 1px solid rgba(255, 22, 74, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: rgba(245, 241, 255, 0.6);
  font-size: 0.95rem;
}

.footer__top {
  color: var(--accent-red);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer__top:hover {
  text-shadow: 0 0 12px rgba(255, 22, 74, 0.6);
}

@media (max-width: 900px) {
  .hero {
    text-align: center;
  }

  .hero__button {
    justify-self: center;
  }

  .hero__media {
    order: -1;
  }

  .logo-glow {
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 2.4rem;
  }

  .build__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 2rem;
  }

  .section__label {
    font-size: 0.7rem;
  }
}
