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

/* --- General Page Styling --- */
.page-slot-games-jackpot {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Default body background is white */
}

.page-slot-games-jackpot__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-slot-games-jackpot__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-jackpot__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #017439; /* Brand primary color for titles */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games-jackpot__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-slot-games-jackpot__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* --- Color Contrast Classes --- */
.page-slot-games-jackpot__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-slot-games-jackpot__dark-bg {
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF;
}

/* --- Call to Action Buttons --- */
.page-slot-games-jackpot__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-slot-games-jackpot__cta-center {
  margin-top: 40px;
}

.page-slot-games-jackpot__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot__btn-register {
  background-color: #C30808; /* Custom color for register */
  color: #FFFF00; /* Custom font color for register */
  border: 2px solid #C30808;
}

.page-slot-games-jackpot__btn-register:hover {
  background-color: #a00606;
  border-color: #a00606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot__btn-login {
  background-color: #C30808; /* Custom color for login */
  color: #FFFF00; /* Custom font color for login */
  border: 2px solid #C30808;
}

.page-slot-games-jackpot__btn-login:hover {
  background-color: #a00606;
  border-color: #a00606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot__btn-primary {
  background-color: #017439; /* Primary brand color */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-slot-games-jackpot__btn-primary:hover {
  background-color: #005f2e;
  border-color: #005f2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-slot-games-jackpot__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005f2e;
  border-color: #005f2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- Hero Section --- */
.page-slot-games-jackpot__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); /* Fixed header offset */
  background-color: #017439; /* Ensure good contrast for text */
  color: #FFFFFF;
}

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

.page-slot-games-jackpot__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-slot-games-jackpot__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-games-jackpot__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFFF00; /* High contrast for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot__hero-description {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* --- Why Choose pg99 link Features Grid --- */
.page-slot-games-jackpot__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards are same height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-slot-games-jackpot__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #e6ffe6; /* Light background for icons */
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #017439;
  margin-bottom: 15px;
}

.page-slot-games-jackpot__feature-card p {
  font-size: 16px;
  color: #555555;
  flex-grow: 1; /* Allow paragraph to take available space */
}

/* --- Game Cards Grid --- */
.page-slot-games-jackpot__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games-jackpot__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot__game-thumbnail {
  width: 100%;
  height: 200px; /* Fixed height for thumbnails */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-slot-games-jackpot__game-card .page-slot-games-jackpot__card-title {
  padding: 20px 15px 10px;
  margin-bottom: 0;
  font-size: 22px;
}

.page-slot-games-jackpot__game-card .page-slot-games-jackpot__card-link {
  text-decoration: none;
  color: #017439;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot__game-card .page-slot-games-jackpot__card-link:hover {
  color: #005f2e;
  text-decoration: underline;
}

.page-slot-games-jackpot__game-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* --- Tips & Strategy Grid --- */
.page-slot-games-jackpot__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot__tip-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-jackpot__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot__tip-title {
  font-size: 22px;
  font-weight: 700;
  color: #017439;
  margin-bottom: 15px;
}

.page-slot-games-jackpot__tip-item p {
  font-size: 16px;
  color: #555555;
}

/* --- Promotions Grid --- */
.page-slot-games-jackpot__promotion-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games-jackpot__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpot__promotion-image {
  width: 100%;
  height: 220px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-slot-games-jackpot__promotion-card .page-slot-games-jackpot__card-title {
  padding: 20px 15px 10px;
  margin-bottom: 0;
  font-size: 22px;
}

.page-slot-games-jackpot__promotion-card .page-slot-games-jackpot__card-link {
  text-decoration: none;
  color: #017439;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot__promotion-card .page-slot-games-jackpot__card-link:hover {
  color: #005f2e;
  text-decoration: underline;
}

.page-slot-games-jackpot__promotion-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* --- Safety & Support Grid --- */
.page-slot-games-jackpot__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}