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

body {
  background: #030303;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(190, 0, 0, 0.2), transparent 40%),
    radial-gradient(circle at bottom, rgba(80, 0, 0, 0.25), transparent 35%);
  pointer-events: none;
  z-index: -3;
}
p {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

.section,
.card,
.lore,
.dark-box {
  text-align: center;
}


/* Header + Side Menu */

#menu-check {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 8%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.45), transparent);
}

.brand-text {
  color: white;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1rem;
}

.menu-toggle {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,0,0,0.4);
  color: white;
  font-size: 1.7rem;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;

  display: grid;
  place-items: center;

  box-shadow: 0 0 20px rgba(255,0,0,0.18);
}

.side-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  z-index: 2000;

  background: #050505;
  border-left: 1px solid rgba(255,0,0,0.35);
  box-shadow: -20px 0 50px rgba(0,0,0,0.8);

  padding: 95px 35px;
  display: flex;
  flex-direction: column;
  gap: 24px;

  transition: right 0.35s ease;
}

.side-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.side-menu a.active {
  color: #ff3333 !important;
  background: rgba(255, 0, 0, 0.12);
  border-left: 4px solid #ff3333;
  padding-left: 18px;
  border-radius: 8px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.side-menu a:hover {
  color: #ff3333;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 28px;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1500;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

#menu-check:checked ~ .side-menu {
  right: 0;
}

#menu-check:checked ~ .menu-overlay {
  opacity: 1;
  pointer-events: all;
}

/* Hero */

.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25), #030303),
    radial-gradient(circle at center, rgba(180, 0, 0, 0.35), transparent 45%),
    url("phantom-bg.png"),
    linear-gradient(135deg, #120000, #030303 45%, #1a0000);
  background-size: cover, cover, contain, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.small-hero {
  min-height: 50vh;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.eyebrow {
  color: #ff3333;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  color: #ff1f1f;
  text-shadow:
    0 0 10px #ff0000,
    0 0 35px #8b0000,
    0 0 70px #8b0000;
  letter-spacing: 5px;
}

.tagline {
  font-size: 1.3rem;
  margin: 15px 0 25px;
  color: #ddd;
}

/* Layout */

main {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
}

.section {
  text-align: center;
  margin-bottom: 65px;
}

.section h2 {
  color: #ff3333;
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
}

.section p {
  max-width: 780px;
  margin: auto;
  color: #ccc;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 65px;
}

.card,
.dark-box {
  background: linear-gradient(145deg, #111, #050505);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.12);
}

.card h3 {
  color: #ff3333;
  margin-bottom: 10px;
}

.card p {
  color: #bbb;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 13px 24px;
  border: 1px solid #ff1f1f;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: 0.3s;
  background: rgba(0,0,0,0.55);
}

.btn:hover {
  background: #ff1f1f;
  box-shadow: 0 0 25px #ff1f1f;
  transform: translateY(-3px);
}

.twitch-box {
  margin-top: 25px;
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.18);
}

.twitch-box iframe {
  display: block;
  border: none;
}

footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid rgba(255, 0, 0, 0.25);
  color: #777;
}

@media (max-width: 850px) {
  .cards {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: 2px;
  }

  .tagline {
    font-size: 1rem;
  }

  .site-header {
    padding: 16px 20px;
  }
  .side-menu a.active {
  color: #ff3333;

  background: rgba(255, 0, 0, 0.12);

  border-left: 3px solid #ff3333;

  padding: 12px 15px;

  border-radius: 8px;

  box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}
  
}
