* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1495ff;
  --blue-dark: #0066ff;
  --bg: #020611;
  --card: #071220;
}

body {
  background: var(--bg);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
    width: 90px;
    height: 90px;
}

.brand span {
  font-size: 28px;
  font-weight: bold;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 35px;
  font-weight: bold;
  text-transform: uppercase;
}

nav a:hover,
nav .active {
  color: var(--blue);
}

/* HERO */

.hero {
  min-height: 560px;
  text-align: center;
  padding: 90px 20px;

  background:
    linear-gradient(rgba(2,6,17,0.35), rgba(2,6,17,0.95)),
    url("assets/WebsiteBackground.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 110px;
  line-height: 0.9;
  font-weight: 900;
}

.hero h1 span {
  color: var(--blue);
  text-shadow: 0 0 20px rgba(20,149,255,.8);
}

.hero h3 {
  letter-spacing: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.hero p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--blue-dark)
  );

  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 8px;
  font-weight: bold;

  box-shadow:
    0 0 15px rgba(20,149,255,.5);
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--blue);
}

/* SECTIONS */

.section {
  padding: 100px 60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  margin-bottom: 40px;

  font-size: 48px;
  font-weight: bold;
}

.section-title i {
  color: var(--blue);
}

/* ABOUT */

.about {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: center;
}

.about p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 20px;
}

/* EST HEXAGON */

.date-badge {
  width: 220px;
  height: 220px;

  color: var(--blue);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;

  background: var(--blue);

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0 50%
  );

  box-shadow:
    0 0 25px rgba(20,149,255,.7);
}

.date-badge::before {
  content: "";

  position: absolute;

  inset: 4px;

  background: var(--bg);

  clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0 50%
  );
}

.date-badge * {
  position: relative;
  z-index: 2;
}

.badge-top {
  color: white;
  margin-bottom: 10px;
}

.date-badge strong {
  font-size: 34px;
  line-height: 1.1;
  text-align: center;
}

.badge-star {
  margin-top: 10px;
}

/* OWNERS */

.owner-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.owner-card {
  background: var(--card);

  border: 1px solid rgba(20,149,255,.25);

  border-radius: 12px;

  padding: 25px;

  display: flex;
  align-items: center;
  gap: 20px;
}

.owner-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.owner-card h3 {
  font-size: 30px;
}

.owner-card p {
  color: var(--blue);
  font-weight: bold;
}

/* STREAMERS */

.streamer-hero {
  text-align: center;
  padding: 95px 20px 60px;

  background:
    linear-gradient(rgba(2,6,17,0.65), rgba(2,6,17,0.95)),
    url("assets/WebsiteBackground.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.streamer-hero h1 {
  font-size: 70px;
}

.streamer-hero span {
  color: var(--blue);
}

.underline {
  width: 80px;
  height: 4px;
  background: var(--blue);
  margin: 20px auto;
}

.streamer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.streamer-card {
  background: var(--card);

  border: 1px solid rgba(20,149,255,.2);

  border-radius: 12px;

  text-align: center;

  padding: 30px;
}

.streamer-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;

  margin-bottom: 20px;
}

.streamer-card h3 {
  font-size: 28px;
}

.streamer-card p {
  color: var(--blue);
  margin-top: 10px;
}

.streamer-card a {
  display: inline-block;

  margin-top: 20px;

  padding: 12px 30px;

  border: 1px solid var(--blue);

  border-radius: 6px;

  color: var(--blue);

  text-decoration: none;
}

.streamer-card a:hover {
  background: var(--blue);
  color: white;
}

/* FOOTER */

footer {
  margin-top: 60px;

  border-top: 1px solid rgba(255,255,255,.08);

  padding: 30px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* MOBILE */

@media (max-width: 900px) {

  .about {
    grid-template-columns: 1fr;
  }

  .owner-grid,
  .streamer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  nav a {
    margin: 10px;
  }
}