.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

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

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  background: linear-gradient(135deg, #C91F17, #E53935);
  color: #FFF5E1;
  text-align: center;
  padding-bottom: 40px;
}

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

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFCC66; /* Glow */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF5E1;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-tertiary,
.page-slot-games__game-button {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #F4D34D; /* Gold */
  border: 2px solid #F4D34D; /* Gold */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary:hover {
  background: #F4D34D;
  color: #7A0E0E; /* Deep Red */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-tertiary {
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  border: 1px solid #F2B544; /* Border */
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
}

.page-slot-games__btn-tertiary:hover {
  background: #C91F17;
  border-color: #FFCC66; /* Glow */
}

.page-slot-games__btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.page-slot-games__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFCC66; /* Glow */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-slot-games__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #FFF5E1;
}

.page-slot-games__why-choose-section,
.page-slot-games__game-types-section,
.page-slot-games__how-to-play-section,
.page-slot-games__promotions-section,
.page-slot-games__trust-section,
.page-slot-games__faq-section,
.page-slot-games__conclusion-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

.page-slot-games__why-choose-section {
  background: #7A0E0E; /* Deep Red */
}

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

.page-slot-games__feature-item {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFCC66; /* Glow */
}

.page-slot-games__feature-text {
  font-size: 1rem;
  line-height: 1.6;
}

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

.page-slot-games__game-tile {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-slot-games__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFCC66; /* Glow */
  padding: 0 15px;
}

.page-slot-games__game-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-slot-games__game-button {
  display: inline-block;
  margin-top: auto; /* Push button to bottom */
  margin-left: 15px;
  margin-right: 15px;
}

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

.page-slot-games__step-item {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-slot-games__step-number {
  font-size: 3rem;
  font-weight: 700;
  color: #FFCC66; /* Glow */
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-slot-games__step-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFCC66; /* Glow */
}

.page-slot-games__step-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-slot-games__promo-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-slot-games__promo-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFCC66; /* Glow */
  padding: 0 15px;
}

.page-slot-games__promo-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-slot-games__trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-slot-games__trust-item {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-slot-games__trust-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__trust-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFCC66; /* Glow */
}

.page-slot-games__trust-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__faq-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #F2B544; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #FFCC66; /* Glow */
  background-color: #C91F17; /* Main Color */
  border-bottom: 1px solid #E53935; /* Auxiliary Color */
  list-style: none; /* For details/summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-question::marker {
  display: none;
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1;
}

.page-slot-games__conclusion-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #C91F17, #E53935);
}

/* General image responsiveness */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-slot-games__container {
    padding: 15px;
  }

  .page-slot-games__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-slot-games__section-title {
    font-size: 2rem;
  }

  .page-slot-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-tertiary,
  .page-slot-games__game-button {
    width: 100%;
    max-width: 300px; /* Constrain width for single column buttons */
    margin: 0 auto;
  }

  .page-slot-games__game-grid,
  .page-slot-games__feature-grid,
  .page-slot-games__step-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__trust-points {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Hero Section */
  .page-slot-games__hero-section {
    padding-top: 10px !important;
  }

  .page-slot-games__hero-image {
    object-fit: contain !important; /* Mobile hero image should contain, not cover */
    max-height: none !important;
    aspect-ratio: unset !important;
  }

  .page-slot-games__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-slot-games__hero-description {
    font-size: 1rem;
  }

  /* Buttons and Button Containers */
  .page-slot-games__hero-cta-buttons,
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-tertiary,
  .page-slot-games__game-button,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 auto !important; /* Center single button */
  }

  /* Game Grid */
  .page-slot-games__game-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 columns for games */
    gap: 15px;
    overflow-x: hidden !important;
  }

  .page-slot-games__game-tile {
    width: 100%;
    box-sizing: border-box;
  }

  .page-slot-games__game-image {
    height: auto !important;
    aspect-ratio: 1/1 !important; /* Maintain square aspect ratio */
    object-fit: cover !important;
  }

  /* Feature, Step, Promo, Trust Grids */
  .page-slot-games__feature-grid,
  .page-slot-games__step-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__trust-points {
    grid-template-columns: 1fr !important; /* Single column */
    gap: 20px;
  }

  /* All images in content area */
  .page-slot-games img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All content containers */
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__feature-item,
  .page-slot-games__game-tile,
  .page-slot-games__step-item,
  .page-slot-games__promo-card,
  .page-slot-games__trust-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ */
  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-slot-games__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }

  /* Section titles and descriptions */
  .page-slot-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-slot-games__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .page-slot-games__feature-title,
  .page-slot-games__game-title,
  .page-slot-games__step-title,
  .page-slot-games__promo-title,
  .page-slot-games__trust-title {
    font-size: 1.4rem;
  }

  .page-slot-games__feature-icon,
  .page-slot-games__trust-icon {
    width: 70px;
    height: 70px;
  }
}