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

/* ============ BODY ============ */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background-color: #000;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  height: 100vh;
  background: url('https://lupintv.neocities.org/Color.png') no-repeat center center/cover; /* Replace with your own image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1s ease-in-out;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #ccc;
}

/* ============ CHANNEL BUTTONS ============ */
.channel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.channel-button {
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

/* INDIVIDUAL CHANNEL COLORS */
.channel-button.lupin {
  background-color: #1e90ff;
}

.channel-button.lupin:hover {
  background-color: #1c7ed6;
}

.channel-button.lupinlive {
  background-color: #ff4c4c;
}

.channel-button.lupinlive:hover {
  background-color: #e03131;
}

.channel-button.pan {
  background-color: #00b894;
}

.channel-button.pan:hover {
  background-color: #009f7f;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .channel-button {
    width: 100%;
    text-align: center;
  }
}
