/* style/slot-games-popular-slots.css */

/* Global styles for this page scope */
.page-slot-games-popular-slots {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set for clarity */
}

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

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

.page-slot-games-popular-slots__section-title {
  font-size: 36px;
  color: #017439; /* Brand primary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games-popular-slots__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-popular-slots__image-content {
  width: 100%;
  height: auto;
  max-width: 800px; /* Example max-width, ensure minimum 200px */
  margin: 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.page-slot-games-popular-slots__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-slot-games-popular-slots__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-popular-slots__btn-primary {
  background: #017439; /* Primary brand color */
  color: #ffffff; /* White text for contrast */
}

.page-slot-games-popular-slots__btn-primary:hover {
  background: #005f2c; /* Slightly darker green */
}

.page-slot-games-popular-slots__btn-secondary {
  background: #ffffff;
  color: #017439; /* Primary brand color text */
  border: 2px solid #017439;
}

.page-slot-games-popular-slots__btn-secondary:hover {
  background: #f0f0f0;
}

/* Specific colors for Register/Login buttons */
.page-slot-games-popular-slots__btn-register {
  background: #C30808; /* Red for register */
  color: #000000; /* Black text for contrast on red, to meet WCAG AA */
}

.page-slot-games-popular-slots__btn-register:hover {
  background: #a00606; /* Darker red */
}


/* HERO Section */
.page-slot-games-popular-slots__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: linear-gradient(135deg, #017439, #005f2c); /* Gradient background for visual appeal */
}

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

.page-slot-games-popular-slots__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-slot-games-popular-slots__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* White text for hero content */
}

.page-slot-games-popular-slots__main-heading {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FFFFFF; /* White text for main heading */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-slot-games-popular-slots__hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0; /* Slightly off-white for description */
}


/* Introduction Section */
.page-slot-games-popular-slots__introduction-section {
  background-color: #f9f9f9;
}

/* Popular Slots Section */
.page-slot-games-popular-slots__popular-slots-section {
  background-color: #017439; /* Dark background section */
  color: #ffffff; /* White text for dark background */
}

.page-slot-games-popular-slots__popular-slots-section .page-slot-games-popular-slots__section-title {
  color: #ffffff;
}

.page-slot-games-popular-slots__popular-slots-section .page-slot-games-popular-slots__text-block {
  color: #f0f0f0;
}

.page-slot-games-popular-slots__slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-popular-slots__slot-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  padding-bottom: 20px;
}

.page-slot-games-popular-slots__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games-popular-slots__card-title {
  font-size: 24px;
  color: #017439;
  margin: 20px 20px 10px 20px;
}

.page-slot-games-popular-slots__card-title a {
  text-decoration: none;
  color: #017439;
  transition: color 0.3s ease;
}

.page-slot-games-popular-slots__card-title a:hover {
  color: #005f2c;
}

.page-slot-games-popular-slots__card-description {
  font-size: 16px;
  color: #555555;
  margin: 0 20px 20px 20px;
}

.page-slot-games-popular-slots__slot-card .page-slot-games-popular-slots__btn-secondary {
  margin: 0 20px;
  width: calc(100% - 40px);
  font-size: 16px;
  padding: 10px 20px;
}

/* Benefits Section */
.page-slot-games-popular-slots__benefits-section {
  background-color: #ffffff;
}

.page-slot-games-popular-slots__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-slot-games-popular-slots__benefits-item {
  background: #f0fdf5; /* Light green background */
  border: 1px solid #e0ffe0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-slots__benefits-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games-popular-slots__benefits-title {
  font-size: 22px;
  color: #017439;
  margin-bottom: 10px;
}

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

/* Guide Section */
.page-slot-games-popular-slots__guide-section {
  background-color: #f9f9f9;
}

.page-slot-games-popular-slots__guide-steps {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-slot-games-popular-slots__guide-subtitle {
  font-size: 28px;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-games-popular-slots__ordered-list,
.page-slot-games-popular-slots__unordered-list {
  list-style-position: inside;
  padding-left: 0;
  font-size: 18px;
  color: #333333;
}

.page-slot-games-popular-slots__ordered-list li,
.page-slot-games-popular-slots__unordered-list li {
  margin-bottom: 10px;
}

.page-slot-games-popular-slots__ordered-list li a,
.page-slot-games-popular-slots__unordered-list li a {
  color: #017439;
  text-decoration: none;
}

.page-slot-games-popular-slots__ordered-list li a:hover,
.page-slot-games-popular-slots__unordered-list li a:hover {
  text-decoration: underline;
}

/* Promotions Section */
.page-slot-games-popular-slots__promotions-section {
  background-color: #017439; /* Dark background section */
  color: #ffffff; /* White text for dark background */
}

.page-slot-games-popular-slots__promotions-section .page-slot-games-popular-slots__section-title {
  color: #ffffff;
}

.page-slot-games-popular-slots__promotions-section .page-slot-games-popular-slots__text-block {
  color: #f0f0f0;
}

.page-slot-games-popular-slots__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-slot-games-popular-slots__promotion-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slot-games-popular-slots__promotion-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-slot-games-popular-slots__promotion-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-slot-games-popular-slots__promotion-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-slot-games-popular-slots__faq-section {
  background-color: #ffffff;
}

.page-slot-games-popular-slots__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-slot-games-popular-slots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}
}