.page-slot-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  background-color: #F4F7FB;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  margin-bottom: 20px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-slot-games__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-slot-games__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

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

.page-slot-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-slot-games__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 400px; /* Ensure cards have a decent minimum height */
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin: 20px 15px 10px;
}

.page-slot-games__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-slot-games__card-title a:hover {
  color: #2F6BFF;
}

.page-slot-games__card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  margin: 0 15px 20px;
  transition: all 0.3s ease;
  min-width: 100px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-slot-games__card-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-slot-games__benefits-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-slot-games__benefits-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  max-width: 500px;
}

.page-slot-games__benefits-item {
  background-color: #FFFFFF;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #1F2D3D;
  position: relative;
  padding-left: 40px;
}

.page-slot-games__benefits-item::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #2F6BFF;
  font-weight: bold;
}

.page-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-slot-games__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 25px;
  text-align: center;
}

.page-slot-games__step-title {
  font-size: 1.3em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-slot-games__step-description {
  font-size: 0.95em;
  color: #1F2D3D;
}

.page-slot-games__step-description a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
}

.page-slot-games__step-description a:hover {
  text-decoration: underline;
}

.page-slot-games__centered-cta {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games__section--promotions {
  background-color: #F4F7FB;
  padding-bottom: 60px;
}

.page-slot-games__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
}

.page-slot-games__promo-image {
  width: 100%;
  max-width: 50%; /* Half width on desktop */
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__promo-content {
  flex-grow: 1;
  padding: 30px;
  max-width: 50%; /* Half width on desktop */
}

.page-slot-games__promo-title {
  font-size: 1.8em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-slot-games__promo-description {
  font-size: 1.05em;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-slot-games__section--faq {
  background-color: #F4F7FB;
  padding-top: 60px;
}

.page-slot-games__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-slot-games__faq-question {
  font-size: 1.2em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-slot-games__faq-answer {
  font-size: 0.95em;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-slot-games__cta-button--secondary {
  background: #6FA3FF;
  color: #FFFFFF;
}

.page-slot-games__cta-button--secondary:hover {
  background: #5a92e6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-slot-games__hero-section {
    padding-bottom: 30px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games__benefits-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-slot-games__promo-card {
    flex-direction: column;
  }
  .page-slot-games__promo-image,
  .page-slot-games__promo-content {
    max-width: 100%;
  }
  .page-slot-games__promo-content {
    padding: 25px;
    text-align: center;
  }
  .page-slot-games__promo-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-bottom: 20px;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-slot-games__section {
    padding: 30px 15px;
  }
  .page-slot-games__section-title {
    font-size: 1.6em;
    margin-bottom: 25px;
  }
  .page-slot-games__grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games__card-image {
    height: 180px;
  }
  .page-slot-games__card-title {
    font-size: 1.3em;
  }
  .page-slot-games__benefits-item {
    font-size: 1em;
  }
  .page-slot-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games__promo-title {
    font-size: 1.3em;
  }
  .page-slot-games__promo-description {
    font-size: 0.9em;
  }
  .page-slot-games__faq-question {
    font-size: 1.1em;
  }
  .page-slot-games__faq-answer {
    font-size: 0.9em;
  }
  /* Mobile content area image overflow prevention */
  .page-slot-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: clamp(1.6em, 5vw, 2em);
  }
  .page-slot-games__section-title {
    font-size: 1.4em;
  }
  .page-slot-games__cta-button {
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }
  .page-slot-games__card-button {
    min-width: unset;
    width: calc(100% - 30px);
  }
  .page-slot-games__promo-content {
    padding: 20px;
  }
}