/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  background-color: #1a1a2e; /* Body background is dark, so main text should be light */
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-first-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-first-deposit-bonus__section {
  padding: 60px 0;
}

.page-promotions-first-deposit-bonus__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #017439; /* Use primary color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.page-promotions-first-deposit-bonus__hero-section > .page-promotions-first-deposit-bonus__container {
  position: relative;
  z-index: 1;
}

.page-promotions-first-deposit-bonus__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit-bonus__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus__btn-register,
.page-promotions-first-deposit-bonus__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-first-deposit-bonus__btn-register {
  background-color: #C30808; /* Custom color for Register */
  color: #FFFF00; /* Custom font color for Register */
  border: 2px solid #FFFF00;
}

.page-promotions-first-deposit-bonus__btn-register:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__btn-login {
  background-color: #C30808; /* Custom color for Login */
  color: #FFFF00; /* Custom font color for Login */
  border: 2px solid #FFFF00;
}

.page-promotions-first-deposit-bonus__btn-login:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-first-deposit-bonus__about-q88-club {
  background-color: #1a1a2e;
}

.page-promotions-first-deposit-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-first-deposit-bonus__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-first-deposit-bonus__feature-icon {
  width: 200px; /* Min size 200px */
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-bonus__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFFF00;
}

.page-promotions-first-deposit-bonus__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions-first-deposit-bonus__bonus-details {
  background-color: #017439;
}

.page-promotions-first-deposit-bonus__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-first-deposit-bonus__info-card {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions-first-deposit-bonus__card-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #FFFF00;
}

.page-promotions-first-deposit-bonus__list {
  list-style: disc inside;
  padding-left: 0;
  color: #f0f0f0;
}

.page-promotions-first-deposit-bonus__list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promotions-first-deposit-bonus__how-to-claim {
  background-color: #1a1a2e;
}

.page-promotions-first-deposit-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}