/* =========================
   BASE / BACKGROUND
========================= */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;

  background: url('../assets/background.png') center center / cover no-repeat;
  min-height: 100vh;
  color: #e5e5e5;
}

/* DARK OVERLAY */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  pointer-events: none;
  z-index: 0;
}


/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  position: relative;
  z-index: 2;
}

/* TOP LOGO */
.logo {
  width: 220px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}


/* NAV BUTTON CONTAINER */
.nav-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* NAV BUTTON IMAGES */
.nav-buttons img {
  width: 150px;
  transition: all 0.25s ease;
  cursor: pointer;
  opacity: 0.85;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.6));
}

/* HOVER EFFECT */
.nav-buttons img:hover {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 0 10px rgba(120,140,160,0.5));
  opacity: 1;
}

/* ACTIVE PAGE GLOW */
.nav-buttons a.active img {
  transform: scale(1.05);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(120,140,160,0.5))
          drop-shadow(0 0 16px rgba(80,100,120,0.4));
}


/* =========================
   HERO SECTION
========================= */
.hero {
  height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: relative;
  z-index: 1;
}


/* =========================
   HERO LOGO (PACK)
========================= */
.hero img {
  width: 440px;
  margin-bottom: 25px;

  filter: drop-shadow(0 0 20px #00ff88)
          drop-shadow(0 0 40px rgba(0,255,136,0.6));

  transition: all 0.3s ease;
}

.hero img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px #00ff88)
          drop-shadow(0 0 60px rgba(0,255,136,0.8));
}


/* =========================
   HERO TEXT
========================= */
.hero h1 {
  color: #00ff88;
  font-size: 48px;
  margin: 10px 0;
  text-shadow: 0 0 20px #00ff88;
}

.hero p {
  color: #d4af37;
  font-size: 18px;
  text-shadow: 0 0 8px rgba(212,175,55,0.6);
}


/* =========================
   CONTENT PANELS
========================= */
section {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;

  background: rgba(0, 0, 0, 0.55);
  border-radius: 12px;

  box-shadow: 0 0 25px rgba(0,0,0,0.7),
              0 0 15px rgba(120,140,160,0.25);

  backdrop-filter: blur(6px);

  position: relative;
  z-index: 1;
}

/* PANEL HEADINGS */
section h1 {
  color: #d4af37;
  margin-bottom: 15px;
}

/* PANEL TEXT */
section p {
  color: #ccc;
  line-height: 1.6;
}


/* =========================
   TWITCH EMBED
========================= */
.twitch-container {
  position: relative;
  width: 100%;
  margin: 25px auto;
  aspect-ratio: 16 / 9;
}

.twitch-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;

  box-shadow: 0 0 20px rgba(0,0,0,0.7),
              0 0 10px rgba(120,140,160,0.25);
}

.btn:last-child {
  background: #5865F2; /* Discord color */
  color: white;
}

/* =========================
   GENERIC BUTTONS
========================= */
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: #00ff88;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 0 10px rgba(0,255,136,0.6);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,255,136,0.9);
}
