:root {
  --primary-color: #004AAD;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-world-cup-betting-guide {
  color: var(--text-light); /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--background-dark); /* Ensure consistency if body background is overridden */
}

.page-resources-world-cup-betting-guide__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(--background-dark);
}

.page-resources-world-cup-betting-guide__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-world-cup-betting-guide__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-world-cup-betting-guide__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-world-cup-betting-guide__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.15);
}

.page-resources-world-cup-betting-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event on parent link */
}

.page-resources-world-cup-betting-guide__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.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-world-cup-betting-guide__video-link:hover .page-resources-world-cup-betting-guide__video-overlay {
  opacity: 1;
}

.page-resources-world-cup-betting-guide__video-click-hint {
  color: var(--text-light);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(0, 123, 255, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-resources-world-cup-betting-guide__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-resources-world-cup-betting-guide__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Gold color */
  color: var(--text-dark);
  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.15);
  border: none;
  cursor: pointer;
}

.page-resources-world-cup-betting-guide__play-now-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-world-cup-betting-guide__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-world-cup-betting-guide__title-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-world-cup-betting-guide__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__main-title .highlight {
  color: var(--secondary-color);
}

.page-resources-world-cup-betting-guide__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-resources-world-cup-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-world-cup-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-world-cup-betting-guide__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources-world-cup-betting-guide__btn-primary:hover {
  background: #003a8d;
  border-color: #003a8d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-world-cup-betting-guide__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-world-cup-betting-guide__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-world-cup-betting-guide__content-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
}

.page-resources-world-cup-betting-guide__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-world-cup-betting-guide__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__section-title .highlight {
  color: var(--secondary-color);
}

.page-resources-world-cup-betting-guide p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #e0e0e0;
}

.page-resources-world-cup-betting-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-world-cup-betting-guide__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  background-color: var(--card-bg-dark);
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-world-cup-betting-guide__feature-icon {
  width: 150px; /* Min size 200px requirement applies to image requirements, not necessarily display size */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  filter: none; /* Ensure no image filters */
}

.page-resources-world-cup-betting-guide__feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-resources-world-cup-betting-guide__feature-description {
  font-size: 16px;
  color: #cccccc;
}

.page-resources-world-cup-betting-guide__faq-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__faq-list {
  margin-top: 40px;
}

.page-resources-world-cup-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-world-cup-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-world-cup-betting-guide__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-resources-world-cup-betting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light);
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-world-cup-betting-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent toggle icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-world-cup-betting-guide__faq-item.active .page-resources-world-cup-betting-guide__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg); /* Change to X or just change text */
}

.page-resources-world-cup-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #cccccc;
}

.page-resources-world-cup-betting-guide__faq-item.active .page-resources-world-cup-betting-guide__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 5px 5px;
}

.page-resources-world-cup-betting-guide__brand-section {
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__brand-intro-text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: #e0e0e0;
}

.page-resources-world-cup-betting-guide__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-world-cup-betting-guide__brand-item {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__brand-item:hover {
  transform: translateY(-5px);
}

.page-resources-world-cup-betting-guide__brand-image {
  width: 180px; /* Min size 200px requirement applies to image requirements, not necessarily display size */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: none; /* Ensure no image filters */
}

.page-resources-world-cup-betting-guide__brand-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-align: center;
}

.page-resources-world-cup-betting-guide__brand-item p {
  font-size: 16px;
  color: #cccccc;
  text-align: center;
}

.page-resources-world-cup-betting-guide__blog-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-world-cup-betting-guide__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-world-cup-betting-guide__blog-item {
  background-color: var(--card-bg-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-world-cup-betting-guide__blog-item:hover {
  transform: translateY(-5px);
}

.page-resources-world-cup-betting-guide__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-resources-world-cup-betting-guide__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: none; /* Ensure no image filters */
}

.page-resources-world-cup-betting-guide__blog-item-title {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: var(--secondary-color);
}

.page-resources-world-cup-betting-guide__blog-item-excerpt {
  font-size: 15px;
  margin: 0 20px 15px;
  color: #cccccc;
}

.page-resources-world-cup-betting-guide__blog-item-date {
  display: block;
  font-size: 14px;
  color: #999999;
  margin: 0 20px 20px;
}

.page-resources-world-cup-betting-guide__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-world-cup-betting-guide__main-title {
    font-size: 40px;
  }
  .page-resources-world-cup-betting-guide__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-resources-world-cup-betting-guide__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-world-cup-betting-guide__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-resources-world-cup-betting-guide__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-world-cup-betting-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }

  .page-resources-world-cup-betting-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain;
  }

  .page-resources-world-cup-betting-guide__video-cta {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-resources-world-cup-betting-guide__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-world-cup-betting-guide__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  .page-resources-world-cup-betting-guide__title-section,
  .page-resources-world-cup-betting-guide__content-section,
  .page-resources-world-cup-betting-guide__faq-section,
  .page-resources-world-cup-betting-guide__brand-section,
  .page-resources-world-cup-betting-guide__blog-section {
    padding: 40px 15px;
  }

  .page-resources-world-cup-betting-guide__main-title {
    font-size: 32px;
  }

  .page-resources-world-cup-betting-guide__title-description {
    font-size: 16px;
  }

  .page-resources-world-cup-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-world-cup-betting-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-resources-world-cup-betting-guide__section-title {
    font-size: 28px;
  }

  .page-resources-world-cup-betting-guide p {
    font-size: 16px;
  }

  .page-resources-world-cup-betting-guide__feature-icon,
  .page-resources-world-cup-betting-guide__brand-image {
    width: 120px; /* Adjusted for mobile view, still larger than small icons */
  }

  .page-resources-world-cup-betting-guide__feature-title,
  .page-resources-world-cup-betting-guide__brand-item-title {
    font-size: 20px;
  }

  .page-resources-world-cup-betting-guide__faq-question {
    padding: 15px;
  }

  .page-resources-world-cup-betting-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-resources-world-cup-betting-guide__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-resources-world-cup-betting-guide__faq-item.active .page-resources-world-cup-betting-guide__faq-answer {
    padding: 15px !important;
  }

  .page-resources-world-cup-betting-guide__blog-image {
    height: 180px;
  }

  .page-resources-world-cup-betting-guide__blog-item-title {
    font-size: 18px;
  }

  .page-resources-world-cup-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-world-cup-betting-guide__container,
  .page-resources-world-cup-betting-guide__features-grid,
  .page-resources-world-cup-betting-guide__brand-content,
  .page-resources-world-cup-betting-guide__blog-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
}