/* style/resources-w88-promotions-explained.css */

:root {
  --page-primary-color: #017439;
  --page-secondary-color: #FFFFFF;
  --page-text-dark: #333333;
  --page-text-light: #FFFFFF;
  --page-background-light: #FFFFFF;
  --page-background-dark: #017439;
  --page-btn-register: #C30808;
  --page-btn-login: #C30808;
  --page-font-register-login: #FFFF00;
}

.page-resources-w88-promotions-explained {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-dark);
  background-color: var(--page-background-light); /* Default white body background */
}

.page-resources-w88-promotions-explained__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: var(--page-text-light);
  background-color: var(--page-background-dark);
  overflow: hidden;
}

.page-resources-w88-promotions-explained__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-w88-promotions-explained__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-text-light);
}

.page-resources-w88-promotions-explained__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--page-text-light);
}

.page-resources-w88-promotions-explained__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-w88-promotions-explained__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  margin-top: 40px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.page-resources-w88-promotions-explained__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-resources-w88-promotions-explained__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-w88-promotions-explained__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-resources-w88-promotions-explained__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--page-primary-color);
}

.page-resources-w88-promotions-explained__dark-bg .page-resources-w88-promotions-explained__section-title,
.page-resources-w88-promotions-explained__dark-bg .page-resources-w88-promotions-explained__text-block {
  color: var(--page-text-light);
}

.page-resources-w88-promotions-explained__text-block {
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-size: 1.1em;
  color: var(--page-text-dark);
}

.page-resources-w88-promotions-explained__light-bg {
  background-color: var(--page-background-light);
  color: var(--page-text-dark);
}

.page-resources-w88-promotions-explained__dark-bg {
  background-color: var(--page-background-dark);
  color: var(--page-text-light);
}

.page-resources-w88-promotions-explained__promotions-types .page-resources-w88-promotions-explained__section-title {
  color: var(--page-primary-color);
}

.page-resources-w88-promotions-explained__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-resources-w88-promotions-explained__card {
  background-color: var(--page-background-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--page-text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-w88-promotions-explained__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-w88-promotions-explained__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-w88-promotions-explained__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-primary-color);
}

.page-resources-w88-promotions-explained__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-w88-promotions-explained__card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.page-resources-w88-promotions-explained__btn-primary,
.page-resources-w88-promotions-explained__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-w88-promotions-explained__btn-primary {
  background-color: var(--page-btn-register);
  color: var(--page-font-register-login);
  border: 2px solid var(--page-btn-register);
}

.page-resources-w88-promotions-explained__btn-primary:hover {
  background-color: #a70707; /* Manual darker shade */
}

.page-resources-w88-promotions-explained__btn-secondary {
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-resources-w88-promotions-explained__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
}

.page-resources-w88-promotions-explained__how-to-claim {
  background-color: var(--page-background-dark);
  color: var(--page-text-light);
}