:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --dark-text-color: #333333;
  --light-text-color: #ffffff;
  --login-color: #EA7C07;
  --black-color: #000000; /* From custom colors */
}

.page-resources-understanding-sun-wun-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--light-text-color); /* Body background is dark, so text is light */
  background-color: var(--black-color); /* Default background from custom colors */
}

.page-resources-understanding-sun-wun-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-understanding-sun-wun-betting__section-title {
  font-size: 2.5em;
  color: var(--secondary-color); /* Light text on dark background */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-resources-understanding-sun-wun-betting__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-resources-understanding-sun-wun-betting__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  box-sizing: border-box;
}

.page-resources-understanding-sun-wun-betting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-understanding-sun-wun-betting__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-understanding-sun-wun-betting__hero-content {
  position: relative;
  z-index: 3;
  color: var(--light-text-color);
  max-width: 800px;
  padding: 20px;
}

.page-resources-understanding-sun-wun-betting__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-understanding-sun-wun-betting__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-resources-understanding-sun-wun-betting__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-resources-understanding-sun-wun-betting__btn-primary,
.page-resources-understanding-sun-wun-betting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
}

.page-resources-understanding-sun-wun-betting__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-understanding-sun-wun-betting__btn-primary:hover {
  background-color: #1e87b7; /* Slightly darker primary */
  border-color: #1e87b7;
}

.page-resources-understanding-sun-wun-betting__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-understanding-sun-wun-betting__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-understanding-sun-wun-betting__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* Section Backgrounds */
.page-resources-understanding-sun-wun-betting__dark-bg {
  background-color: var(--black-color);
  color: var(--light-text-color);
  padding: 80px 0;
}

.page-resources-understanding-sun-wun-betting__light-bg {
  background-color: var(--secondary-color);
  color: var(--dark-text-color);
  padding: 80px 0;
}

.page-resources-understanding-sun-wun-betting__light-bg .page-resources-understanding-sun-wun-betting__section-title {
  color: var(--dark-text-color);
}

/* Image Grid */
.page-resources-understanding-sun-wun-betting__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-understanding-sun-wun-betting__image-card {
  background-color: var(--black-color); /* Dark card on light section */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--light-text-color);
}

.page-resources-understanding-sun-wun-betting__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-understanding-sun-wun-betting__image-caption {
  padding: 15px;
  font-size: 0.95em;
  text-align: center;
}

/* Product Grid */
.page-resources-understanding-sun-wun-betting__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-understanding-sun-wun-betting__product-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-resources-understanding-sun-wun-betting__product-image {
  width: 100%;
  height: 200px; /* Fixed height for product images */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-resources-understanding-sun-wun-betting__product-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-resources-understanding-sun-wun-betting__product-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-resources-understanding-sun-wun-betting__product-title a:hover {
  color: var(--primary-color);
}

.page-resources-understanding-sun-wun-betting__product-description {
  font-size: 0.95em;
  padding: 0 15px;
  color: #f0f0f0;
}

/* Feature Grid */
.page-resources-understanding-sun-wun-betting__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-understanding-sun-wun-betting__feature-card {
  background-color: var(--secondary-color); /* Light card on light section, but text is dark */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: var(--dark-text-color);
  border: 1px solid #e0e0e0;
}

.page-resources-understanding-sun-wun-betting__feature-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--dark-text-color);
}

.page-resources-understanding-sun-wun-betting__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Promo Grid */
.page-resources-understanding-sun-wun-betting__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-understanding-sun-wun-betting__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--light-text-color);
}

.page-resources-understanding-sun-wun-betting__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-resources-understanding-sun-wun-betting__promo-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-understanding-sun-wun-betting__promo-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-resources-understanding-sun-wun-betting__promo-title a:hover {
  color: var(--primary-color);
}

.page-resources-understanding-sun-wun-betting__promo-description {
  font-size: 0.95em;
  padding: 0 15px 20px;
  color: #f0f0f0;
}

/* Info Cards */
.page-resources-understanding-sun-wun-betting__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-understanding-sun-wun-betting__info-card {
  background-color: var(--secondary-color); /* Light card on light section, text dark */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: var(--dark-text-color);
  border: 1px solid #e0e0e0;
}

.page-resources-understanding-sun-wun-betting__info-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-resources-understanding-sun-wun-betting__info-title a {
  color: var(--dark-text-color);
  text-decoration: none;
}

.page-resources-understanding-sun-wun-betting__info-title a:hover {
  color: var(--primary-color);
}

.page-resources-understanding-sun-wun-betting__info-description {
  font-size: 1em;
  color: #555555;
}

/* Steps Grid */
.page-resources-understanding-sun-wun-betting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}