/* Hero Section Styles */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
  color: #f39c12;
  text-decoration: underline;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin: 15px 0;
  color: #34495e;
}

.hero-subtitle .highlight-alt {
  font-style: italic;
  color: #16a085;
}

.announcement {
  font-size: 1.1rem;
  color: red;
  font-weight: 600;
  margin: 20px 0;
}

.announcement span {
  color: #2980b9;
  font-weight: bold;
}

.btn-get-started {
  background-color: #e74c3c;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-get-started:hover {
  background-color: #c0392b;
}

.btn-watch-video {
  margin-left: 15px;
  color: #3498db;
  font-size: 1rem;
}

.hero-img {
  animation: bounceIn 1.5s ease-in-out;
}

@keyframes bounceIn {
  from {
    transform: scale(0.8);
    opacity: 0.5;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.live-blink {
  color: red !important;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.3; }
  100% { opacity: 1; }
}
