@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@500;600;700&display=swap');

:root {
  --bg: #050607;
  --panel: #0b0d0f;
  --panel2: #101316;
  --text: #f2f2f2;
  --muted: #9b9da0;
  --red: #ff2020;
  --red-dark: #8d0808;
  --line: rgba(255, 32, 32, .75);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(100,100,100,.08), transparent 35%),
    #050607;
  color: var(--text);
  font-family: Rajdhani, Arial, sans-serif;
  min-height: 100vh;
}

.site-header {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
}

.header-art {
  position: absolute;
  inset: 0 0 auto 0;
  height: 250px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), #050607),
    url("hero.png") center 35% / cover no-repeat;
  opacity: .22;
  filter: saturate(.7) contrast(1.2);
}

.brand {
  position: relative;
  text-align: center;
  padding: 0 20px 34px;
}

.brand h1 {
  margin: 0;
  font-family: Orbitron, sans-serif;
  font-size: clamp(2.1rem, 7vw, 5rem);
  letter-spacing: .06em;
  line-height: 1;
  text-shadow: 0 0 8px #fff, 0 0 22px rgba(255,32,32,.75);
}

.brand p {
  margin: 17px 0 20px;
  color: var(--red);
  font-size: clamp(.75rem, 2vw, 1.05rem);
  letter-spacing: .35em;
}

.red-line {
  width: min(760px, 80%);
  height: 2px;
  margin: auto;
  background: var(--red);
  box-shadow: 0 0 12px var(--red), 0 0 30px rgba(255,32,32,.6);
}

.nav {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(5,6,7,.94);
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  box-shadow: 0 0 18px rgba(255,32,32,.18);
}

.nav a {
  color: #ddd;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Orbitron, sans-serif;
  font-size: clamp(.65rem, 1.5vw, .9rem);
  letter-spacing: .08em;
  padding: 22px 30px;
  position: relative;
  transition: color .2s, background .2s;
}

.nav a + a { border-left: 1px solid #444; }

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(255,32,32,.07);
}

.nav a.active::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 22px;
  right: 22px;
  bottom: 0;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

main {
  width: min(1400px, calc(100% - 40px));
  margin: 24px auto 55px;
}

.featured {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background: linear-gradient(135deg, #090b0d, #0d1013);
  border: 1px solid var(--line);
  box-shadow: 0 0 25px rgba(255,32,32,.16), inset 0 0 50px rgba(255,255,255,.015);
  min-height: 510px;
}

.featured-image {
  position: relative;
  min-height: 510px;
  margin: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,32,32,.65);
}

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.featured-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 25px 10px 16px;
  background: rgba(150,0,0,.85);
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  font-family: Orbitron, sans-serif;
  letter-spacing: .08em;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 55px 50px 25px;
}

.meta {
  color: var(--red);
  font-weight: 600;
  letter-spacing: .13em;
  font-size: .9rem;
}

.featured-copy h2 {
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 22px 0;
}

.headline-line {
  width: 100%;
  max-width: 390px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  margin-bottom: 24px;
}

.featured-copy p {
  color: #b8b9bb;
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 570px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  max-width: 100%;
  margin-top: 22px;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  border: 1px solid var(--red);
  font-family: Orbitron, sans-serif;
  font-size: .82rem;
  letter-spacing: .07em;
  box-shadow: 0 0 14px rgba(255,32,32,.25);
  transition: background .2s, box-shadow .2s;
}

.button:hover {
  background: rgba(255,32,32,.12);
  box-shadow: 0 0 22px rgba(255,32,32,.45);
}

.button span { color: var(--red); font-size: 1.3rem; }

footer {
  text-align: center;
  padding: 28px 20px 35px;
  border-top: 1px solid var(--line);
  background: #070809;
  box-shadow: 0 -5px 25px rgba(255,32,32,.12);
}

.footer-title {
  font-family: Orbitron, sans-serif;
  letter-spacing: .35em;
  font-size: 1.2rem;
}

.footer-subtitle {
  color: #888;
  letter-spacing: .16em;
  margin: 12px 0 18px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--red);
  text-decoration: none;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(255,32,32,.7);
}

.copyright {
  color: #666;
  font-size: .8rem;
  letter-spacing: .12em;
}

@media (max-width: 850px) {
  .nav a { padding: 17px 14px; }
  .nav a + a { border-left: 0; }
  .featured { grid-template-columns: 1fr; }
  .featured-image { min-height: 300px; }
  .featured-image img { min-height: 300px; }
  .featured-copy { padding: 25px; }
}

@media (max-width: 520px) {
  .site-header { padding-top: 25px; }
  .brand p { letter-spacing: .15em; }
  .nav { display: grid; grid-template-columns: 1fr 1fr; }
  .nav a { text-align: center; padding: 14px 5px; font-size: .62rem; }
  main { width: min(100% - 20px, 1400px); }
  .featured-image { margin: 10px; }
  .featured-copy h2 { font-size: 1.65rem; }
}
