:root {
  color-scheme: dark;
  --bg: #050202;
  --panel: rgba(11, 5, 5, 0.72);
  --panel-2: #120606;
  --text: #f7eeee;
  --muted: rgba(247, 238, 238, 0.66);
  --line: rgba(255, 36, 52, 0.28);
  --red: #ff2434;
  --deep-red: #a70f20;
  --shadow: rgba(0, 0, 0, 0.72);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Rajdhani, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(255, 238, 238, 0.9);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  border: 1px solid rgba(255, 36, 52, 0.7);
  border-radius: 4px;
  background: #050202;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(5, 2, 2, 0.88), rgba(5, 2, 2, 0.18));
  border-bottom: 1px solid rgba(255, 36, 52, 0.12);
  backdrop-filter: blur(14px);
}
.nav-inner {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: "Metal Mania", Orbitron, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.brand span { color: var(--red); }
.links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 232, 232, 0.7);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.links a {
  text-decoration: none;
  transition: color 160ms ease;
}
.links a:hover { color: var(--red); }
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px 16px 72px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 2, 2, 0.2) 0%, rgba(5, 2, 2, 0.18) 48%, rgba(5, 2, 2, 0.86) 100%),
    radial-gradient(circle at 50% 44%, rgba(255, 36, 52, 0.16), transparent 34%),
    url('/assets/another-clan-poster.jpg') center center / cover no-repeat,
    var(--bg);
  background:
    linear-gradient(180deg, rgba(5, 2, 2, 0.2) 0%, rgba(5, 2, 2, 0.18) 48%, rgba(5, 2, 2, 0.86) 100%),
    radial-gradient(circle at 50% 44%, rgba(255, 36, 52, 0.16), transparent 34%),
    image-set(
      url('/assets/another-clan-poster.webp') type('image/webp'),
      url('/assets/another-clan-poster.jpg') type('image/jpeg')
    ) center center / cover no-repeat,
    var(--bg);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  pointer-events: none;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 1;
  background:
    radial-gradient(circle at 34% 48%, rgba(255, 36, 52, 0.08), transparent 18%),
    radial-gradient(circle at 62% 58%, rgba(92, 6, 14, 0.22), transparent 25%),
    radial-gradient(circle at 47% 28%, rgba(255, 90, 36, 0.06), transparent 22%);
  filter: blur(46px);
  animation: smoke 16s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  animation-duration: 23s;
  animation-direction: reverse;
  opacity: 0.72;
}
.ember {
  position: absolute;
  z-index: 1;
  bottom: -40px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 36, 52, 0.9);
  animation: ember 8s linear infinite;
  opacity: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  align-self: end;
  padding-bottom: clamp(42px, 8vh, 82px);
  animation: enter 800ms ease-out both;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.overline {
  margin: 0 0 16px;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255, 222, 222, 0.74);
}
.hero-title {
  margin: 0;
}
.rule {
  width: min(320px, 70vw);
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform-origin: center;
  animation: pulseLine 3.2s ease-in-out infinite;
}
h1 {
  margin: 0;
  font-family: Orbitron, Arial, sans-serif;
  font-size: clamp(4.5rem, 17vw, 15rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 20px rgba(255, 36, 52, 0.7),
    0 0 76px rgba(167, 15, 32, 0.56),
    0 8px 0 var(--shadow);
}
.subtitle {
  margin: 28px auto 0;
  max-width: 900px;
  color: rgba(255, 238, 238, 0.86);
  font-size: clamp(1.24rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  min-height: 68px;
  margin-top: 44px;
  padding: 0 56px;
  border: 2px solid rgba(255, 36, 52, 0.62);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(20, 12, 13, 0.98), rgba(0, 0, 0, 0.98));
  color: white;
  font-family: Orbitron, Rajdhani, Arial, sans-serif;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 226, 0.12),
    inset 0 -10px 18px rgba(0, 0, 0, 0.48),
    0 16px 38px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(255, 36, 52, 0.54),
    0 0 86px rgba(167, 15, 32, 0.36);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.hero .button {
  animation: buttonReveal 980ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}
.button::before,
.button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.button::before {
  inset: 6px;
  border: 1px solid rgba(255, 36, 52, 0.28);
  border-radius: 3px;
}
.button::after {
  inset: auto 18px -1px;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 232, 232, 0.62), transparent);
  opacity: 0.86;
}
.button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 82, 94, 0.9);
  background:
    linear-gradient(180deg, rgba(33, 17, 19, 0.98), rgba(4, 0, 1, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 226, 0.16),
    inset 0 -10px 18px rgba(0, 0, 0, 0.42),
    0 20px 44px rgba(0, 0, 0, 0.46),
    0 0 48px rgba(255, 36, 52, 0.74),
    0 0 112px rgba(167, 15, 32, 0.48);
}
.button:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 226, 0.1),
    inset 0 -6px 14px rgba(0, 0, 0, 0.5),
    0 10px 26px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(255, 36, 52, 0.48),
    0 0 72px rgba(167, 15, 32, 0.32);
}
.section {
  position: relative;
  padding: 92px 16px;
  background: var(--bg);
  scroll-margin-top: 92px;
}
.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 36, 52, 0.24);
}
.kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Metal Mania", Orbitron, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  font-family: "Metal Mania", Orbitron, Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 500;
}
.raid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 36, 52, 0.26);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 36, 52, 0.9), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 36, 52, 0.74);
  box-shadow: 0 0 54px rgba(177, 18, 34, 0.24);
}
.card:hover::before { opacity: 1; }
.badge {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 4px 11px;
  border: 1px solid rgba(255, 36, 52, 0.42);
  background: rgba(167, 15, 32, 0.24);
  color: rgba(255, 238, 238, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.card h3 {
  margin: 0;
  font-family: "Metal Mania", Orbitron, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 20px;
}
.about {
  border-block: 1px solid rgba(255, 36, 52, 0.24);
  background: linear-gradient(180deg, #070303, #120606);
}
.about-copy {
  width: min(920px, 100%);
  color: rgba(255, 238, 238, 0.84);
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
}
.about-copy p {
  margin: 0;
}
.about-copy p + p {
  margin-top: 22px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0;
}
.info-panel {
  border: 1px solid rgba(255, 36, 52, 0.28);
  background: rgba(0, 0, 0, 0.34);
  padding: 24px;
  color: rgba(255, 238, 238, 0.84);
}
.info-panel h3 {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "Metal Mania", Orbitron, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.info-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 21px;
  font-weight: 700;
}
.info-panel li::before {
  content: ">";
  margin-right: 10px;
  color: var(--red);
}
.discord {
  padding: 110px 16px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 36, 52, 0.16), transparent 30%),
    var(--bg);
}
.cta-box {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 54px 28px;
  border: 1px solid rgba(255, 36, 52, 0.28);
  background: rgba(0, 0, 0, 0.46);
  box-shadow: 0 0 54px rgba(177, 18, 34, 0.24);
}
.cta-box p:last-of-type {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 26px;
  font-weight: 700;
}
footer {
  padding: 28px 16px;
  border-top: 1px solid rgba(255, 36, 52, 0.22);
  background: black;
  color: rgba(255, 238, 238, 0.45);
  font-family: "Metal Mania", Orbitron, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}
@keyframes smoke {
  0%, 100% { transform: translate3d(-2%, 1%, 0) scale(1); }
  50% { transform: translate3d(2%, -2%, 0) scale(1.04); }
}
@keyframes ember {
  0% { transform: translateY(24px) scale(0.8); opacity: 0; }
  20% { opacity: 0.85; }
  100% { transform: translateY(-120vh) scale(1.25); opacity: 0; }
}
@keyframes pulseLine {
  0%, 100% { opacity: 0.45; transform: scaleX(0.86); }
  50% { opacity: 1; transform: scaleX(1); }
}
@keyframes enter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes buttonReveal {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.94);
    filter: brightness(0.82);
  }
  58% {
    opacity: 1;
    transform: translateY(-4px) scale(1.03);
    filter: brightness(1.12);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
  .hero-video,
  .ember {
    display: none;
  }
  .hero::before,
  .hero::after {
    animation: none !important;
  }
}
@media (max-width: 820px) {
  .nav-inner { height: auto; min-height: 76px; align-items: flex-start; flex-direction: column; justify-content: center; padding: 14px 0; }
  .links { width: 100%; gap: 18px; overflow-x: auto; padding-bottom: 2px; font-size: 12px; }
  .hero {
    padding-top: 150px;
    background-position: center top;
  }
  .hero-content { padding-bottom: 38px; }
  .subtitle {
    letter-spacing: 0.16em;
    font-size: 1.06rem;
  }
  .button {
    width: min(100%, 340px);
    min-height: 62px;
    padding: 0 24px;
    letter-spacing: 0.08em;
  }
  .section-head { align-items: start; flex-direction: column; }
  .raid-grid, .info-grid { grid-template-columns: 1fr; }
  .card { min-height: 190px; }
}
