/* style/index-register-play-guide.css */
.page-index-register-play-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: var(--background-color, #FFFFFF); /* Inherit or default to white */
}

/* Hero Section */
.page-index-register-play-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 60px 20px;
  background-color: #26A9E0; /* Brand primary color for hero background */
  color: #FFFFFF; /* White text on brand primary background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-index-register-play-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-index-register-play-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly transparent to let background color show */
}

.page-index-register-play-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-register-play-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-register-play-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
  opacity: 0.9;
}

/* General Section Styling */
.page-index-register-play-guide__section {
  padding: 60px 20px;
  background-color: #FFFFFF; /* Default light background for sections */
  color: #333333; /* Dark text on light background */
  border-bottom: 1px solid #f0f0f0;
}

.page-index-register-play-guide__section:last-of-type {
  border-bottom: none;
}

.page-index-register-play-guide__section--intro {
  background-color: #f8f8f8;
}

.page-index-register-play-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-register-play-guide__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Brand primary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-register-play-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #EA7C07; /* Login/accent color for underline */
  border-radius: 2px;
}

.page-index-register-play-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Buttons */
.page-index-register-play-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-index-register-play-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-index-register-play-guide__btn-primary,
.page-index-register-play-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box; /* Crucial for responsive buttons */
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
}

.page-index-register-play-guide__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-index-register-play-guide__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-register-play-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0; /* Brand primary color for text */
  border: 2px solid #26A9E0;
}

.page-index-register-play-guide__btn-secondary:hover {
  background-color: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Images */
.page-index-register-play-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Specific content area images to ensure minimum size */
.page-index-register-play-guide__step-image,
.page-index-register-play-guide__feature-image,
.page-index-register-play-guide__game-image {
  min-width: 200px;
  min-height: 200px;
}

/* Step Grid */
.page-index-register-play-guide__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-register-play-guide__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-register-play-guide__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-register-play-guide__step-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-register-play-guide__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-index-register-play-guide__step-description {
  font-size: 1em;
  color: #555555;
}

/* Feature Grid (for Deposit Methods) */
.page-index-register-play-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-register-play-guide__feature-item {
  background-color: #e6f7ff; /* Light blue background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-register-play-guide__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-register-play-guide__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-register-play-guide__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-index-register-play-guide__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Ordered/Unordered Lists */
.page-index-register-play-guide__ordered-list,
.page-index-register-play-guide__bullet-list,
.page-index-register-play-guide__contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}