/* style/live-updates.css */
.page-live-updates {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark background */
  background-color: #0d124b; /* Darker background for contrast */
}

.page-live-updates__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-updates__hero {
  background: linear-gradient(135deg, #1A237E, #0d124b);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-live-updates__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-live-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107;
  position: relative;
  z-index: 1;
  font-weight: bold;
  line-height: 1.2;
}

.page-live-updates__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-live-updates__section {
  padding: 80px 0;
  background-color: #1A237E; /* Main brand color for sections */
  color: #ffffff;
}

.page-live-updates__section:nth-of-type(even) {
  background-color: #0d124b; /* Alternate background for readability */
}

.page-live-updates__section-title {
  font-size: 2.8em;
  color: #FFC107;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-live-updates__section-description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-live-updates__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-live-updates__news-card {
  background-color: #2c387e; /* Slightly lighter than main for card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-updates__news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-live-updates__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-live-updates__news-content {
  padding: 25px;
}

.page-live-updates__news-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-live-updates__news-title a {
  color: #FFC107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live-updates__news-title a:hover {
  color: #ffd700;
}

.page-live-updates__news-meta {
  font-size: 0.9em;
  color: #a0a0a0;
  margin-bottom: 15px;
}

.page-live-updates__news-excerpt {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-live-updates__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-live-updates__btn--primary {
  background-color: #FFC107;
  color: #1A237E;
  border: 2px solid #FFC107;
}

.page-live-updates__btn--primary:hover {
  background-color: #ffd700;
  color: #0d124b;
  transform: translateY(-3px);
}

.page-live-updates__btn--secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
}

.page-live-updates__btn--secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-3px);
}

.page-live-updates__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live-updates__mt-40 {
  margin-top: 40px;
}

.page-live-updates__live-results {
  padding: 80px 0;
  background-color: #0d124b;
}

.page-live-updates__results-table {
  background-color: #2c387e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.page-live-updates__table-header, .page-live-updates__table-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr 1.5fr;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.page-live-updates__table-header {
  background-color: #1A237E;
  font-weight: bold;
  color: #FFC107;
  font-size: 1.1em;
}

.page-live-updates__table-row {
  font-size: 1em;
  color: #e0e0e0;
}

.page-live-updates__table-row:last-child {
  border-bottom: none;
}

.page-live-updates__table-row--live {
  background-color: rgba(255, 193, 7, 0.1);
  color: #FFC107;
  font-weight: bold;
}

.page-live-updates__cta-download {
  background: linear-gradient(90deg, #1A237E, #0d124b);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live-updates__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-live-updates__cta-text {
  max-width: 800px;
}

.page-live-updates__cta-title {
  font-size: 2.8em;
  color: #FFC107;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live-updates__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-live-updates__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-live-updates__cta-image {
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-live-updates__faq {
  background-color: #1A237E;
}

.page-live-updates__faq-item {
  background-color: #2c387e;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-live-updates__faq-question {
  font-size: 1.4em;
  color: #FFC107;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live-updates__faq-answer {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live-updates__hero-title {
    font-size: 2.8em;
  }
  .page-live-updates__hero-subtitle {
    font-size: 1.3em;
  }
  .page-live-updates__section-title, .page-live-updates__cta-title {
    font-size: 2.2em;
  }
  .page-live-updates__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-live-updates__table-header, .page-live-updates__table-row {
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
    font-size: 0.9em;
    padding: 12px 15px;
  }
  .page-live-updates__cta-content {
    flex-direction: column;
  }
  .page-live-updates__cta-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-live-updates__hero-title {
    font-size: 2.2em;
  }
  .page-live-updates__hero-subtitle {
    font-size: 1.1em;
  }
  .page-live-updates__section-title, .page-live-updates__cta-title {
    font-size: 1.8em;
  }
  .page-live-updates__section-description, .page-live-updates__cta-description {
    font-size: 1em;
  }
  .page-live-updates__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-updates__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-live-updates__table-header, .page-live-updates__table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    font-size: 0.8em;
    padding: 10px;
  }
  .page-live-updates__news-title {
    font-size: 1.3em;
  }
  .page-live-updates__faq-question {
    font-size: 1.2em;
  }
  .page-live-updates__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-live-updates__hero, .page-live-updates__section, .page-live-updates__cta-download {
    padding: 60px 0;
  }
  .page-live-updates__hero-title {
    font-size: 1.8em;
  }
  .page-live-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-live-updates__section-title, .page-live-updates__cta-title {
    font-size: 1.5em;
  }
  .page-live-updates__btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-live-updates__cta-buttons {
    flex-direction: column;
  }
  .page-live-updates__table-header, .page-live-updates__table-row {
    grid-template-columns: 0.8fr 1.2fr 1.2fr 0.8fr;
    font-size: 0.75em;
    padding: 8px;
  }
}