:root {
  --black: #050505;
  --dark-gray: #111111;
  --white: #ffffff;
  --red: #ff0040;
  --gray: #b0b0b0;
  --border: #222;
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; }

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent);
  z-index: 1000;
}

.brand { font-size: 24px; font-weight: 700; }
.brand span { color: var(--red); }

.nav-links a {
  color: var(--white);
  text-decoration: none;
  margin-left: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--red); }

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.4), var(--black)), url('hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.hero h1 { font-size: clamp(32px, 8vw, 64px); line-height: 1.1; margin-bottom: 10px; }
.hero h1 span { color: var(--red); display: block; }
.hero p { color: var(--gray); font-size: 18px; margin-bottom: 30px; }

.btn-red {
  background: var(--red);
  color: white;
  padding: 16px 35px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  transition: 0.3s;
}
.btn-red:hover { background: #d60036; transform: translateY(-3px); }

/* SECTIONS */
section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.section-header { margin-bottom: 40px; border-left: 4px solid var(--red); padding-left: 15px; }

/* MISSION SECTION */
.mission-section { text-align: center; border-bottom: 1px solid var(--border); padding-bottom: 60px; }
.red-accent-label { color: var(--red); font-size: 1rem; margin-bottom: 15px; }
.mission-lead { font-size: 1.8rem; font-style: italic; font-weight: 300; margin-bottom: 20px; }
.mission-subtext { max-width: 700px; margin: 0 auto; color: var(--gray); }

/* FEATURED PLAYER */
.featured-player { background: var(--dark-gray); padding: 15px; border: 1px solid var(--border); }
.featured-meta { padding: 20px 0; }

/* VIDEO GRID */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.video-card { background: var(--dark-gray); padding: 10px; border: 1px solid var(--border); transition: 0.3s; }
.video-card:hover { border-color: var(--red); }
.video-card h3 { font-size: 18px; margin: 15px 0 5px; }
.video-card .meta { color: var(--red); font-size: 12px; font-weight: bold; }

/* IFRAME WRAPPER */
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ABOUT SECTION */
.about-section { background: #000; padding: 100px 20px; border-top: 1px solid var(--border); }
.about-container { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; max-width: 1000px; margin: 0 auto; }
.about-text h2 { margin-bottom: 20px; font-size: 2rem; }
.about-text p { margin-bottom: 15px; color: var(--gray); }

/* FOOTER */
footer { text-align: center; padding: 60px 20px; border-top: 1px solid var(--border); color: var(--gray); }
.social-icons { margin-bottom: 20px; }
.social-icons a { color: white; font-size: 24px; margin: 0 15px; }

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .about-container { grid-template-columns: 1fr; text-align: center; }
  .mission-lead { font-size: 1.4rem; }
}