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

:root {
  --bg: #0e0e16;
  --bg-alt: #16161f;
  --twitch: #9146FF;
  --youtube: #FF0000;
  --text: #f2f2f2;
  --text-muted: #a0a0b0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: rgba(14, 14, 22, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.navbar nav ul li a {
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.navbar nav ul li a:hover {
  color: var(--text);
}

/* Hamburger button (mobile only) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 700px) {
  .menu-toggle {
    display: flex;
  }

  .navbar nav {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: rgba(14, 14, 22, 0.97);
    backdrop-filter: blur(8px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar nav.open {
    max-height: 320px;
  }

  .navbar nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 6%;
  }

  .navbar nav ul li a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(14, 14, 22, 0.5) 0%, rgba(14, 14, 22, 0.6) 70%, rgba(14, 14, 22, 0.8) 88%, var(--bg) 100%),
    url("../assets/images/banner.png");
  background-size: 100% 100%, cover;
  background-position: center, center 82%;
  background-repeat: no-repeat, no-repeat;
}

.hero-logo {
  max-width: 340px;
  width: 60%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
}

.hero-content p {
  margin-top: 12px;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.social-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-twitch {
  background: var(--twitch);
  color: #fff;
  box-shadow: 0 6px 20px rgba(145, 70, 255, 0.4);
}

.btn-youtube {
  background: var(--youtube);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Sections */
section {
  padding: 100px 6%;
  text-align: center;
}

section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Schedule */
.schedule {
  background: var(--bg-alt);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.day {
  background: var(--bg);
  border-radius: 14px;
  padding: 24px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.day h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.day p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Link cards */
.link-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 260px;
  padding: 40px 20px;
  border-radius: 16px;
  transition: transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
}

.card-twitch {
  background: linear-gradient(160deg, rgba(145, 70, 255, 0.25), var(--bg-alt));
}

.card-youtube {
  background: linear-gradient(160deg, rgba(255, 0, 0, 0.2), var(--bg-alt));
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 700px) {
  .navbar nav ul {
    gap: 16px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}
