:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #00BFFF; /* Deep Sky Blue */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --bg-dark: #121212;
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-resources-vietnam-betting-market {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light); /* Light text for dark body background */
  background-color: var(--bg-dark); /* Inherited from shared.css but explicit for clarity */
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Ensure content is not covered by fixed header */
}

.page-resources-vietnam-betting-market .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-vietnam-betting-market__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
}

.page-resources-vietnam-betting-market__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-vietnam-betting-market__sub-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-color-light);
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-resources-vietnam-betting-market__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-vietnam-betting-market__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: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

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

.page-resources-vietnam-betting-market__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 24px rgba(0, 0, 0, 0.3);
}

.page-resources-vietnam-betting-market__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

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

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

.page-resources-vietnam-betting-market__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: var(--primary-color);
  border-radius: 8px;
  white-space: nowrap;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

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

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

.page-resources-vietnam-betting-market__play-now-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.page-resources-vietnam-betting-market__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-vietnam-betting-market__title-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
}

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

.page-resources-vietnam-betting-market__main-title {
  font-size: 48px;
  color: var(--text-color-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-vietnam-betting-market__title-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-vietnam-betting-market__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-vietnam-betting-market__cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-resources-vietnam-betting-market__cta-button:hover {
  background: #0099e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-vietnam-betting-market__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-vietnam-betting-market__content-area {
  padding: 60px 20px;
  background-color: var(--bg-dark);
}

.page-resources-vietnam-betting-market__content-area p {
  margin-bottom: 15px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

.page-resources-vietnam-betting-market__list {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.page-resources-vietnam-betting-market__list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-resources-vietnam-betting-market__list li strong {
  color: var(--primary-color);
}

.page-resources-vietnam-betting-market__image-wrapper {
  margin: 40px 0;
  text-align: center;
  background-color: var(--card-bg-dark);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-vietnam-betting-market__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.page-resources-vietnam-betting-market__image-caption {
  margin-top: 15px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.page-resources-vietnam-betting-market__faq-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.page-resources-vietnam-betting-market__faq-list {
  margin-top: 40px;
}

.page-resources-vietnam-betting-market__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--card-bg-dark);
}

.page-resources-vietnam-betting-market__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter than card bg */
  border: 1px solid var(--border-color-dark);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-vietnam-betting-market__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-resources-vietnam-betting-market__faq-question:active {
  background: rgba(255, 255, 255, 0.15);
}

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

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

.page-resources-vietnam-betting-market__faq-item.active .page-resources-vietnam-betting-market__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Change to a visual indication of open */
}

.page-resources-vietnam-betting-market__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 25px;
  opacity: 0;
}

.page-resources-vietnam-betting-market__faq-item.active .page-resources-vietnam-betting-market__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03); /* Slightly different background for answer */
  border-top: 1px solid var(--border-color-dark);
  border-radius: 0 0 8px 8px;
}

.page-resources-vietnam-betting-market__faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.page-resources-vietnam-betting-market__brand-section {
  padding: 60px 20px;
  background-color: var(--bg-dark);
}

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

.page-resources-vietnam-betting-market__brand-item {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}}