.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F4F7FB; /* Page specific background color */
}

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

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

.page-slot-games__section-title {
  font-size: 36px;
  color: #1F2D3D;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
  border-radius: 2px;
}

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

.page-slot-games__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__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-games__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.1);
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-slot-games__main-title {
  color: #1F2D3D;
  /* font-size: clamp(28px, 4vw, 48px); */ /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-slot-games__description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
}

.page-slot-games__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-slot-games__introduction p {
  font-size: 17px;
  line-height: 1.7;
  color: #4A4A4A;
  margin-bottom: 20px;
  text-align: left;
}

.page-slot-games__introduction p:last-child {
  margin-bottom: 0;
}

.page-slot-games__dark-section {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-slot-games__dark-section .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__dark-section .page-slot-games__section-title::after {
  background: linear-gradient(90deg, #6FA3FF, #A5C4FF);
}

.page-slot-games__popular-games p {
  color: #ffffff;
  margin-bottom: 40px;
}

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

.page-slot-games__game-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__game-card .page-slot-games__card-title {
  font-size: 22px;
  color: #1F2D3D;
  margin: 20px 20px 10px;
}

.page-slot-games__game-card p {
  font-size: 15px;
  color: #4A4A4A;
  margin: 0 20px 20px;
  line-height: 1.5;
}

.page-slot-games__cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: all 0.3s ease;
  border: none;
}

.page-slot-games__cta-button-small:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-slot-games__why-choose {
  background-color: #F4F7FB;
}

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

.page-slot-games__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-slot-games__feature-item img {
  width: 100%; /* Ensure images fill container */
  
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-slot-games__feature-title {
  font-size: 22px;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-slot-games__feature-item p {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
}

.page-slot-games__center-cta {
  margin-top: 50px;
}

.page-slot-games__cta-button--large {
  font-size: 20px;
  padding: 18px 50px;
}

.page-slot-games__strategies {
  text-align: left;
}

.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games__strategy-list li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  border-left: 5px solid #2F6BFF;
}

.page-slot-games__strategy-list li strong {
  color: #1F2D3D;
  font-size: 17px;
}

.page-slot-games__promotions p {
  color: #ffffff;
  margin-bottom: 40px;
}

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

.page-slot-games__promo-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__promo-card img {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__promo-card .page-slot-games__card-title {
  font-size: 22px;
  color: #1F2D3D;
  margin: 20px 20px 10px;
}

.page-slot-games__promo-card p {
  font-size: 15px;
  color: #4A4A4A;
  margin: 0 20px 20px;
  line-height: 1.5;
}

.page-slot-games__faq {
  background-color: #F4F7FB;
}

.page-slot-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: #F0F8FF;
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to X or simply changes to minus */
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 25px;
  background: #F9FCFF;
  border-top: 1px solid #D6E2FF;
  border-radius: 0 0 10px 10px;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
}

.page-slot-games__latest-blog {
  background-color: #F4F7FB;
}

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

.page-slot-games__blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-slot-games__blog-card img {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__blog-card .page-slot-games__card-title {
  font-size: 20px;
  color: #1F2D3D;
  margin: 20px 20px 10px;
}

.page-slot-games__blog-card .page-slot-games__card-title a {
  text-decoration: none;
  color: #1F2D3D;
  transition: color 0.3s ease;
}

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

.page-slot-games__blog-card p {
  font-size: 15px;
  color: #4A4A4A;
  margin: 0 20px 15px;
  line-height: 1.5;
}

.page-slot-games__blog-date {
  font-size: 13px;
  color: #888888;
  margin: 0 20px 20px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__section-title {
    font-size: 32px;
  }
  .page-slot-games__main-title {
    font-size: 40px;
  }
  .page-slot-games__description {
    font-size: 17px;
  }
  .page-slot-games__game-grid, .page-slot-games__feature-list, .page-slot-games__promo-grid, .page-slot-games__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-image img {
    border-radius: 8px;
  }
  .page-slot-games__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-slot-games__description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-slot-games__cta-button, .page-slot-games__cta-button--large {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-slot-games__game-grid, .page-slot-games__feature-list, .page-slot-games__promo-grid, .page-slot-games__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__game-card, .page-slot-games__feature-item, .page-slot-games__promo-card, .page-slot-games__blog-card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
  }
  .page-slot-games__game-card img, .page-slot-games__promo-card img, .page-slot-games__blog-card img {
    
  }
  .page-slot-games__game-card .page-slot-games__card-title, .page-slot-games__promo-card .page-slot-games__card-title, .page-slot-games__blog-card .page-slot-games__card-title {
    font-size: 20px;
    margin: 15px;
  }
  .page-slot-games__game-card p, .page-slot-games__promo-card p, .page-slot-games__blog-card p {
    font-size: 14px;
    margin: 0 15px 15px;
  }
  .page-slot-games__cta-button-small {
    padding: 8px 20px;
    font-size: 14px;
    margin: 0 15px 15px;
  }
  .page-slot-games__strategy-list li {
    font-size: 15px;
    padding: 15px;
  }
  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px;
  }
  .page-slot-games__faq-qtext {
    font-size: 16px;
  }
  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }
  .page-slot-games__blog-date {
    margin: 0 15px 15px;
  }
  /* Image responsive rules */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__section, .page-slot-games__game-card, .page-slot-games__feature-item, .page-slot-games__promo-card, .page-slot-games__blog-card, .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-section .page-slot-games__hero-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: 28px;
  }
  .page-slot-games__section-title {
    font-size: 24px;
  }
  .page-slot-games__description {
    font-size: 15px;
  }
}