:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --accent-color: #E53E3E;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0d0d0d;
  --bg-light: #f9f9f9;
  --border-color: #e0e0e0;
}

/* Base styles for the specific page */
.page-news-latest-match-report {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark);
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
}

.page-news-latest-match-report__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-latest-match-report__section-title,
.page-news-latest-match-report__main-title,
.page-news-latest-match-report__brand-title,
.page-news-latest-match-report__blog-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-news-latest-match-report__section-intro,
.page-news-latest-match-report__title-description,
.page-news-latest-match-report__brand-intro,
.page-news-latest-match-report__blog-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #cccccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Section */
.page-news-latest-match-report__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background-color: var(--primary-color);
}

.page-news-latest-match-report__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-latest-match-report__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-latest-match-report__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news-latest-match-report__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-news-latest-match-report__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}

.page-news-latest-match-report__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-news-latest-match-report__video-link:hover .page-news-latest-match-report__video-overlay {
  opacity: 1;
}

.page-news-latest-match-report__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: var(--accent-color);
  border-radius: 5px;
  white-space: nowrap;
}

.page-news-latest-match-report__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-news-latest-match-report__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-news-latest-match-report__play-now-button:hover {
  background: #e0bb00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news-latest-match-report__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Title Section */
.page-news-latest-match-report__title-section {
  padding: 80px 20px;
  background-color: var(--bg-dark);
  text-align: center;
}

.page-news-latest-match-report__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-news-latest-match-report__title-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-news-latest-match-report__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news-latest-match-report__cta-buttons--center {
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-news-latest-match-report__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-news-latest-match-report__cta-button--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-news-latest-match-report__cta-button--primary:hover {
  background-color: #e0bb00;
  border-color: #e0bb00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-news-latest-match-report__cta-button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-news-latest-match-report__cta-button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Content Section */
.page-news-latest-match-report__content-section {
  padding: 80px 0;
}

.page-news-latest-match-report__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-news-latest-match-report__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-news-latest-match-report__article {
  background-color: var(--bg-dark);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news-latest-match-report__article-title {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-news-latest-match-report__article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-news-latest-match-report__article-text {
  font-size: 17px;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.7;
}

.page-news-latest-match-report__read-more-link {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-news-latest-match-report__read-more-link:hover {
  color: #e0bb00;
  border-color: #e0bb00;
}

/* Upcoming Events Section */
.page-news-latest-match-report__upcoming-events-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-news-latest-match-report__event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news-latest-match-report__event-item {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news-latest-match-report__event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-latest-match-report__event-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 5px;
}

.page-news-latest-match-report__event-details {
  flex-grow: 1;
}

.page-news-latest-match-report__event-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news-latest-match-report__event-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-news-latest-match-report__event-link {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-news-latest-match-report__event-link:hover {
  background-color: #c43232;
}