.page-news {
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from body, ensure consistency */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-news__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: #333333;
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-news__main-title {
  font-size: 3.2em;
  color: #E44D26;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__intro-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  position: absolute;
  top: 0;
  left: 0;
}

.page-news__section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-news__section--results {
  background-color: #1a1a1a;
}

.page-news__section--highlights {
  background-color: #333333;
}

.page-news__section--analysis {
  background-color: #1a1a1a;
}

.page-news__section--betting-guide {
  background-color: #E44D26;
  color: #ffffff;
}

.page-news__section--related {
  background-color: #1a1a1a;
}

.page-news__section--faq {
  background-color: #333333;
}

.page-news__section--cta {
  background-color: #E44D26;
  color: #ffffff;
  text-align: center;
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #E44D26;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-news__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-news__btn-primary {
  background-color: #E44D26;
  color: #ffffff;
  border: 2px solid #E44D26;
}

.page-news__btn-primary:hover {
  background-color: #ff6633;
  border-color: #ff6633;
}

.page-news__btn-secondary {
  background-color: transparent;
  color: #E44D26;
  border: 2px solid #E44D26;
}

.page-news__btn-secondary:hover {
  background-color: #E44D26;
  color: #ffffff;
}

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

.page-news__result-card,
.page-news__analysis-item,
.page-news__related-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light background on dark body for contrast */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-news__result-card:hover,
.page-news__analysis-item:hover,
.page-news__related-card:hover {
  transform: translateY(-5px);
}

.page-news__card-image,
.page-news__analysis-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-news__card-title,
.page-news__analysis-title {
  font-size: 1.4em;
  margin: 15px 20px 10px;
  color: #E44D26;
}

.page-news__card-title a,
.page-news__analysis-title a {
  color: #E44D26;
  text-decoration: none;
}

.page-news__card-title a:hover,
.page-news__analysis-title a:hover {
  text-decoration: underline;
}

.page-news__card-text,
.page-news__analysis-text {
  font-size: 0.95em;
  color: #cccccc;
  margin: 0 20px 15px;
}

.page-news__card-link,
.page-news__analysis-link {
  display: inline-block;
  margin: 0 20px 20px;
  color: #E44D26;
  text-decoration: none;
  font-weight: bold;
}

.page-news__card-link:hover,
.page-news__analysis-link:hover {
  text-decoration: underline;
}

.page-news__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.page-news__video-link:hover .page-news__video-overlay {
  opacity: 1;
}

.page-news__video-caption {
  text-align: center;
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 10px;
}

.page-news__guide-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-news__guide-steps {
  flex: 1;
}

.page-news__step-item {
  margin-bottom: 30px;
}

.page-news__step-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-news__step-title::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 1.2em;
  top: -2px;
}

.page-news__step-text {
  color: #f0f0f0;
  font-size: 1.05em;
}

.page-news__guide-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-news__guide-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news__faq-list {
  margin-top: 40px;
}

.page-news__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Light background on dark body for contrast */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  font-size: 1.05em;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

.page-news__faq-answer p {
  margin-bottom: 0;
}

.page-news__faq-answer a {
  color: #E44D26;
  text-decoration: none;
}

.page-news__faq-answer a:hover {
  text-decoration: underline;
}

.page-news__cta-content {
  max-width: 900px;
}

.page-news__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-news__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-section {
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
  }

  .page-news__main-title {
    font-size: 2.8em;
  }

  .page-news__intro-text {
    font-size: 1.1em;
  }

  .page-news__section-title {
    font-size: 2em;
  }

  .page-news__guide-content {
    flex-direction: column;
    text-align: center;
  }

  .page-news__guide-image-wrapper {
    min-width: unset;
    width: 100%;
    margin-top: 30px;
  }

  .page-news__step-title {
    padding-left: 0;
  }

  .page-news__step-title::before {
    content: none;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-news__hero-content {
    margin-bottom: 30px;
  }

  .page-news__main-title {
    font-size: 2.2em;
    line-height: 1.2;
  }

  .page-news__intro-text {
    font-size: 1em;
  }

  .page-news__section {
    padding: 40px 15px;
  }

  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-news__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news__result-grid,
  .page-news__analysis-grid,
  .page-news__related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__card-image,
  .page-news__analysis-image {
    height: 200px;
  }

  .page-news__card-title,
  .page-news__analysis-title {
    font-size: 1.2em;
    margin: 10px 15px 8px;
  }

  .page-news__card-text,
  .page-news__analysis-text {
    font-size: 0.9em;
    margin: 0 15px 10px;
  }

  .page-news__card-link,
  .page-news__analysis-link {
    margin: 0 15px 15px;
  }

  .page-news__video-wrapper {
    margin-bottom: 20px;
  }

  .page-news__video-overlay {
    font-size: 1.5em;
  }

  .page-news__video-caption {
    font-size: 0.85em;
  }

  .page-news__step-title {
    font-size: 1.5em;
  }

  .page-news__step-text {
    font-size: 0.95em;
  }

  .page-news__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-news__faq-answer {
    padding: 0 20px;
    font-size: 1em;
  }

  .page-news__faq-item.active .page-news__faq-answer {
    padding: 12px 20px;
  }

  .page-news__cta-title {
    font-size: 2em;
  }

  .page-news__cta-description {
    font-size: 1.1em;
  }

  /* Mobile image and video responsive */
  .page-news img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news video,
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__video-section,
  .page-news__video-container,
  .page-news__video-wrapper,
  .page-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-news__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}