body {
  background-color: #1a1d20;
  color: #fff;
}

.navbar {
  padding: 1rem 0;
  background-color: #1a1d20;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.top-nav {
  background-color: #1a1d20;
  padding: 0.5rem 0;
  border-bottom: 1px solid #2d3238;
}

.top-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
}

.stream-card {
  background-color: #2d3238;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
}

.stream-card:hover {
  transform: translateY(-5px);
}

.stream-logo {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

.stream-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stream-description {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.prize-banner {
  background: linear-gradient(90deg, #3772ff 0%, #6d5dfc 100%);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  background-color: #1a1d20;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #2d3238;
}

.match-card {
  background-color: #1f2937;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.match-card:hover {
  background-color: #2d3748;
}

.watch-button {
  background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
  transition: all 0.3s ease;
}

.watch-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.time-badge {
  background-color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #9ca3af;
}

.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%;
}

.aspect-w-16 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-green-600 span {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

#mobile-menu {
  transition: transform 0.3s ease-in-out;
}

#mobile-menu-overlay {
  transition: opacity 0.3s ease-in-out;
}

body.menu-open {
  overflow: hidden;
}