/* Header Navigation Styles */
.enlarged-nav-item {
  font-weight: 600 !important;
  text-transform: uppercase;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.enlarged-nav-item:hover,
.enlarged-nav-item.active {
  color: #ffc107 !important;
  transform: translateY(-2px);
}

.btn_live.enlarged-nav-item {
  padding: 8px 20px !important;
  border-radius: 30px;
  background-color: rgba(255, 0, 0, 0.8);
  color: white !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

.btn_live.enlarged-nav-item:hover {
  background-color: rgb(255, 0, 0);
  transform: translateY(-2px);
}

.live-icon {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }
}

/* Make the logo text bigger */
.logo-text {
  font-weight: 700 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .enlarged-nav-item {
    font-size: 16px !important;
    padding: 8px 12px !important;
  }

  .btn_live.enlarged-nav-item {
    font-size: 16px !important;
    padding: 6px 15px !important;
  }

  .logo-text {
    font-size: 18px !important;
  }
}
