/* style/live-matches.css */
.page-live-matches {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light grey for text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

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

.page-live-matches__section {
  padding: 60px 0;
  text-align: center;
}

.page-live-matches__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live-matches__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

/* Hero Section */
.page-live-matches__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%); /* Dark blue gradient */
}

.page-live-matches__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-live-matches__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transform: scale(1.1);
}

.page-live-matches__hero .page-live-matches__container {
  position: relative;
  z-index: 1;
}

.page-live-matches__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-matches__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  color: #E0E0E0;
}

.page-live-matches__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live-matches__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-live-matches__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live-matches__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-live-matches__cta-button--final {
  background-color: #E74C3C; /* Striking red for final CTA */
  color: #FFFFFF;
}

.page-live-matches__cta-button--final:hover {
  background-color: #C0392B;
}

/* Why MCW Section */
.page-live-matches__why-mcw {
  background-color: #0A192F;
}

.page-live-matches__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-matches__feature-item {
  background-color: #1A2A40; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live-matches__feature-item:hover {
  transform: translateY(-10px);
  background-color: #2A3A50;
}

.page-live-matches__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-live-matches__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-matches__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #D0D0D0;
}

/* How to Join Section */
.page-live-matches__how-to-join {
  background-color: #1A2A40;
}

.page-live-matches__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-matches__step-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-live-matches__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A192F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  border: 3px solid #0A192F;
}

.page-live-matches__step-icon {
  width: 80px;
  height: 80px;
  margin-top: 20px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-live-matches__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-matches__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #D0D0D0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live-matches__step-button {
  display: inline-block;
  background-color: #E74C3C; /* Red for action */
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live-matches__step-button:hover {
  background-color: #C0392B;
}

/* Upcoming Matches Section */
.page-live-matches__upcoming-matches {
  background-color: #0A192F;
}

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

.page-live-matches__match-card {
  background-color: #1A2A40;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-live-matches__match-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #FFD700;
}

.page-live-matches__match-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-live-matches__match-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live-matches__match-details {
  font-size: 0.95em;
  color: #D0D0D0;
  margin-bottom: 5px;
}

.page-live-matches__match-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: auto; /* Pushes button to the bottom */
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-live-matches__match-button:hover {
  background-color: #E6C200;
}

.page-live-matches__view-all {
  margin-top: 50px;
}

/* Betting Tips Section */
.page-live-matches__betting-tips {
  background-color: #1A2A40;
}

.page-live-matches__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live-matches__tip-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live-matches__tip-item:hover {
  transform: translateY(-8px);
}

.page-live-matches__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #FFD700);
}

.page-live-matches__tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live-matches__tip-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #D0D0D0;
}

/* Promotions Section */
.page-live-matches__promotions {
  background-color: #0A192F;
}

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

.page-live-matches__promo-card {
  background-color: #1A2A40;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-live-matches__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #E74C3C;
}

.page-live-matches__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-live-matches__promo-text {
  font-size: 0.95em;
  color: #D0D0D0;
  padding: 0 20px 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-live-matches__promo-button {
  display: inline-block;
  background-color: #E74C3C; /* Red */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 0 0 8px 8px; /* Rounded bottom */
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  width: 100%;
}

.page-live-matches__promo-button:hover {
  background-color: #C0392B;
}

/* FAQ Section */
.page-live-matches__faq {
  background-color: #1A2A40;
}

.page-live-matches__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.page-live-matches__faq-item {
  background-color: #0A192F;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #2A3A50;
}

.page-live-matches__faq-question {
  display: block;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-live-matches__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-live-matches__faq-item[open] .page-live-matches__faq-question::after {
  content: '-';
}

.page-live-matches__faq-question:hover {
  background-color: #1A2A40;
}

.page-live-matches__faq-answer {
  padding: 15px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #D0D0D0;
  border-top: 1px solid #2A3A50;
}

/* Call to Action Final Section */
.page-live-matches__call-to-action {
  background-color: #0A192F;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live-matches__hero-title {
    font-size: 2.8em;
  }
  .page-live-matches__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-live-matches__hero {
    padding: 80px 0;
  }
  .page-live-matches__hero-title {
    font-size: 2.2em;
  }
  .page-live-matches__hero-description {
    font-size: 1.1em;
  }
  .page-live-matches__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-live-matches__section {
    padding: 40px 0;
  }
  .page-live-matches__section-title {
    font-size: 1.8em;
  }
  .page-live-matches__features-grid,
  .page-live-matches__steps-grid,
  .page-live-matches__match-list,
  .page-live-matches__tips-grid,
  .page-live-matches__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-live-matches__feature-item,
  .page-live-matches__step-item,
  .page-live-matches__match-card,
  .page-live-matches__tip-item,
  .page-live-matches__promo-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-live-matches__hero-title {
    font-size: 1.8em;
  }
  .page-live-matches__hero-description {
    font-size: 1em;
  }
  .page-live-matches__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-live-matches__section-title {
    font-size: 1.5em;
  }
  .page-live-matches__feature-title,
  .page-live-matches__step-title,
  .page-live-matches__match-title,
  .page-live-matches__tip-title,
  .page-live-matches__promo-title {
    font-size: 1.2em;
  }
  .page-live-matches__match-image {
    height: 150px;
  }
  .page-live-matches__promo-image {
    height: 120px;
  }
  .page-live-matches__faq-question {
    font-size: 1em;
  }
  .page-live-matches__faq-answer {
    font-size: 0.9em;
  }
}