/* style/resources-vietnam-betting-market-analysis.css */

:root {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f9f9f9;
  --background-dark: #0A2239;
}

.page-resources-vietnam-betting-market-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Inherited from shared.css body */
}

.page-resources-vietnam-betting-market-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-vietnam-betting-market-analysis__hero-section {
  position: relative;
  padding: 120px 0 80px 0; /* Adjust padding-top for fixed header */
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, darken(var(--primary-color), 10%) 100%);
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-vietnam-betting-market-analysis__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-resources-vietnam-betting-market-analysis__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

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

.page-resources-vietnam-betting-market-analysis__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-resources-vietnam-betting-market-analysis__cta-button:hover {
  background: darken(var(--secondary-color), 10%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-vietnam-betting-market-analysis__cta-button--secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-vietnam-betting-market-analysis__cta-button--secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-vietnam-betting-market-analysis__content-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-vietnam-betting-market-analysis__content-section:nth-of-type(even) {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-vietnam-betting-market-analysis__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: inherit;
}

.page-resources-vietnam-betting-market-analysis__content-section:nth-of-type(even) .page-resources-vietnam-betting-market-analysis__section-title {
  color: var(--primary-color);
}

.page-resources-vietnam-betting-market-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.page-resources-vietnam-betting-market-analysis__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  color: inherit;
}

.page-resources-vietnam-betting-market-analysis__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  padding-left: 0;
}

.page-resources-vietnam-betting-market-analysis__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-vietnam-betting-market-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-resources-vietnam-betting-market-analysis__card {
  background-color: var(--background-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-vietnam-betting-market-analysis__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-vietnam-betting-market-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-resources-vietnam-betting-market-analysis__card-title {
  font-size: 1.5em;
  margin: 20px 15px 10px 15px;
  font-weight: bold;
  color: var(--primary-color);
}

.page-resources-vietnam-betting-market-analysis__card-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-vietnam-betting-market-analysis__card-title a:hover {
  color: var(--secondary-color);
}

.page-resources-vietnam-betting-market-analysis__card-text {
  font-size: 1em;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
  line-height: 1.6;
}

.page-resources-vietnam-betting-market-analysis__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 0 15px 20px 15px;
  transition: background-color 0.3s ease;
}

.page-resources-vietnam-betting-market-analysis__card-button:hover {
  background: darken(var(--secondary-color), 10%);
}

.page-resources-vietnam-betting-market-analysis__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-resources-vietnam-betting-market-analysis__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, darken(var(--primary-color), 10%) 100%);
  color: var(--text-light);
}

.page-resources-vietnam-betting-market-analysis__cta-bottom-section .page-resources-vietnam-betting-market-analysis__section-title {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-vietnam-betting-market-analysis__main-title {
    font-size: 2.8em;
  }
  .page-resources-vietnam-betting-market-analysis__section-title {
    font-size: 2.2em;
  }
  .page-resources-vietnam-betting-market-analysis__hero-section {
    padding: 100px 0 60px 0; /* Adjust padding-top for fixed header */
  }
}

@media (max-width: 768px) {
  .page-resources-vietnam-betting-market-analysis__hero-section {
    padding: 100px 0 50px 0; /* Adjust padding-top for fixed header */
  }
  .page-resources-vietnam-betting-market-analysis__main-title {
    font-size: 2em;
  }
  .page-resources-vietnam-betting-market-analysis__hero-description,
  .page-resources-vietnam-betting-market-analysis__text-block,
  .page-resources-vietnam-betting-market-analysis__list-item {
    font-size: 1em;
  }
  .page-resources-vietnam-betting-market-analysis__section-title {
    font-size: 1.8em;
  }
  .page-resources-vietnam-betting-market-analysis__sub-title {
    font-size: 1.5em;
  }
  .page-resources-vietnam-betting-market-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-vietnam-betting-market-analysis__cta-button {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-vietnam-betting-market-analysis__card-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-vietnam-betting-market-analysis__container {
    padding: 0 15px;
  }
  .page-resources-vietnam-betting-market-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    border-radius: 5px;
  }
  .page-resources-vietnam-betting-market-analysis__card-image {
    height: 180px;
  }
  .page-resources-vietnam-betting-market-analysis__card-title {
    font-size: 1.3em;
  }
  .page-resources-vietnam-betting-market-analysis__card-text {
    padding: 0 10px 15px 10px;
  }
  .page-resources-vietnam-betting-market-analysis__card-button {
    margin: 0 10px 15px 10px;
  }
  .page-resources-vietnam-betting-market-analysis__content-section {
    padding: 50px 0;
  }
  .page-resources-vietnam-betting-market-analysis__cta-bottom-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .page-resources-vietnam-betting-market-analysis__main-title {
    font-size: 1.8em;
  }
  .page-resources-vietnam-betting-market-analysis__section-title {
    font-size: 1.6em;
  }
  .page-resources-vietnam-betting-market-analysis__hero-section {
    padding: 80px 0 40px 0; /* Adjust padding-top for fixed header */
  }
}