:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-card: rgba(255, 255, 255, 0.08); /* Slightly visible on dark background */
  --bg-light-card: #ffffff;
  --border-color-light: #e0e0e0;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-resources-vietnam-online-betting-guide {
  color: var(--text-light); /* Light text for dark background */
  background-color: transparent; /* Inherit from body or shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer placeholder */
}

/* Video Area Styles */
.page-resources-vietnam-online-betting-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  /* Desktop padding-top to clear fixed header */
  padding-top: 10px; /* Adjust based on actual header height */
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(255, 215, 0, 0.1));
}

.page-resources-vietnam-online-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-vietnam-online-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-vietnam-online-betting-guide__video-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-vietnam-online-betting-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-resources-vietnam-online-betting-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevents video controls from interfering with link click */
}

.page-resources-vietnam-online-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.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-vietnam-online-betting-guide__video-link:hover .page-resources-vietnam-online-betting-guide__video-overlay {
  opacity: 1;
}

.page-resources-vietnam-online-betting-guide__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: var(--secondary-color);
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.5);
}

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

.page-resources-vietnam-online-betting-guide__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--primary-color);
  color: var(--text-dark); /* Ensure dark text on bright primary color */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.page-resources-vietnam-online-betting-guide__play-now-button:hover {
  background: #e6c200; /* Darker gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-resources-vietnam-online-betting-guide__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* H1 Title + CTA Buttons */
.page-resources-vietnam-online-betting-guide__title-section {
  padding: 80px 20px;
  text-align: center;
  background: radial-gradient(circle at top left, rgba(30, 144, 255, 0.1), transparent);
}

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

.page-resources-vietnam-online-betting-guide__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.page-resources-vietnam-online-betting-guide__title-description {
  font-size: 1.3em;
  color: var(--text-light);
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-vietnam-online-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-vietnam-online-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.page-resources-vietnam-online-betting-guide__btn-primary {
  background: var(--primary-color);
  color: var(--text-dark); /* Dark text on gold */
}

.page-resources-vietnam-online-betting-guide__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-resources-vietnam-online-betting-guide__btn-secondary {
  background: var(--secondary-color);
  color: var(--text-light); /* Light text on blue */
  border-color: var(--secondary-color);
}

.page-resources-vietnam-online-betting-guide__btn-secondary:hover {
  background: #1a7ad9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

/* Brand Introduction */
.page-resources-vietnam-online-betting-guide__brand-section {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.05); /* Slightly visible light background on dark body */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vietnam-online-betting-guide__brand-container {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-light);
}