/* style/slot-games-jackpot-features.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --register-login-font-color: #FFFF00;
  --text-color-light-bg: #333333;
  --text-color-dark-bg: #FFFFFF;
  --card-bg-color: #FFFFFF;
  --section-bg-dark: #017439;
  --section-bg-light: #F8F8F8;
}

.page-slot-games-jackpot-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-light-bg);
  background-color: var(--background-color, #FFFFFF); /* Inherited from shared, fallback to white */
}

.page-slot-games-jackpot-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-jackpot-features__section {
  padding: 60px 0;
  position: relative;
}

.page-slot-games-jackpot-features__section-title {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-jackpot-features__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-jackpot-features__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* --- Hero Section --- */
.page-slot-games-jackpot-features__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 */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.page-slot-games-jackpot-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games-jackpot-features__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-games-jackpot-features__hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games-jackpot-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-color-dark-bg); /* Text on hero should be light */
}

.page-slot-games-jackpot-features__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--register-login-font-color); /* Specific color for title as requested */
}

.page-slot-games-jackpot-features__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-dark-bg);
}

.page-slot-games-jackpot-features__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-jackpot-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-dark-bg);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-features__cta-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-features__cta-button--register {
  background: var(--register-button-color);
  color: var(--register-login-font-color);
}

.page-slot-games-jackpot-features__cta-button--register:hover {
  background: #a30606; /* darken(var(--register-button-color), 10%); */
  color: var(--register-login-font-color);
}

.page-slot-games-jackpot-features__cta-button--learn-more {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-slot-games-jackpot-features__cta-button--learn-more:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-slot-games-jackpot-features__cta-button--contact {
  background: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-slot-games-jackpot-features__cta-button--contact:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-slot-games-jackpot-features__cta-button--register-promo {
  background: var(--register-button-color);
  color: var(--register-login-font-color);
}

.page-slot-games-jackpot-features__cta-button--register-promo:hover {
  background: #a30606; /* darken(var(--register-button-color), 10%); */
  color: var(--register-login-font-color);
}

.page-slot-games-jackpot-features__cta-button--register-final {
  background: var(--register-button-color);
  color: var(--register-login-font-color);
}

.page-slot-games-jackpot-features__cta-button--register-final:hover {
  background: #a30606; /* darken(var(--register-button-color), 10%); */
  color: var(--register-login-font-color);
}

.page-slot-games-jackpot-features__cta-button--promotions-final {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-slot-games-jackpot-features__cta-button--promotions-final:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}