.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-slot-games h1, .page-slot-games h2, .page-slot-games h3 {
  color: #007bff;
  text-align: center;
  margin-bottom: 25px;
}

.page-slot-games h1 {
  font-size: 2.8em;
  margin-top: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games h2 {
  font-size: 2.2em;
  padding-top: 40px;
}

.page-slot-games h3 {
  font-size: 1.6em;
  color: #007bff;
}

.page-slot-games p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-slot-games .text-center {
  text-align: center;
}

.page-slot-games a {
  color: #007bff;
  text-decoration: none;
}

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

.page-slot-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffc107;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-slot-games .cta-button:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games .btn-small:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

/* Hero Section */
.page-slot-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #007bff; /* Fallback for image load */
  overflow: hidden;
}

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

.page-slot-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-slot-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Styling */
.page-slot-games section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-slot-games section:nth-of-type(odd) {
  background-color: #f0f8ff; /* Light blue tint */
}

.page-slot-games section:nth-of-type(even) {
  background-color: #ffffff;
}

/* Introduction Section */
.page-slot-games .introduction-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-slot-games .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games .feature-item img {
  width: 150px; /* Min size 200x200 is for actual content images, these are illustrative */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games .feature-item h3 {
  color: #007bff;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slot-games .feature-item p {
  font-size: 0.95em;
  color: #555;
  text-align: center;
}

/* Game Showcase Section */
.page-slot-games .game-showcase-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-slot-games .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slot-games .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-slot-games .game-card .card-content {
  padding: 20px;
  flex-grow: 1;
}

.page-slot-games .game-card h3 {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #007bff;
  text-align: left;
}

.page-slot-games .game-card p {
  font-size: 0.9em;
  color: #555;
  text-align: left;
}

/* Guide Section */
.page-slot-games .guide-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-slot-games .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slot-games .step-item img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-slot-games .step-item h3 {
  color: #007bff;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slot-games .step-item p {
  font-size: 0.95em;
  color: #555;
  text-align: center;
}

/* Promotion Section */
.page-slot-games .promotion-section ul {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-slot-games .promotion-section ul li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  line-height: 1.8;
  border-left: 5px solid #ffc107;
}

.page-slot-games .promotion-section ul li strong {
  color: #007bff;
}

/* Exclusive Images Section */
.page-slot-games .exclusive-images-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-slot-games .image-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .image-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Tips Section */
.page-slot-games .tips-section ul {
  list-style: disc;
  margin: 40px auto;
  max-width: 800px;
  padding-left: 25px;
}

.page-slot-games .tips-section ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-slot-games .tips-section ul li strong {
  color: #007bff;
}

/* FAQ Section */
.page-slot-games .faq-section {
  background-color: #f0f8ff;
}

.page-slot-games .faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-slot-games .faq-question:hover {
  background: #f5f5f5;
  color: #0056b3;
}

.page-slot-games .faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #333;
  text-align: left;
  flex-grow: 1;
}

.page-slot-games .faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-slot-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ffc107;
}

.page-slot-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-slot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px;
}

.page-slot-games .faq-answer p {
  margin: 0;
  font-size: 0.95em;
  color: #555;
  text-align: left;
}

/* CTA Bottom Section */
.page-slot-games .cta-bottom-section {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-slot-games .cta-bottom-section h2 {
  color: #ffffff;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-slot-games .cta-bottom-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games h1 {
    font-size: 2.2em;
  }
  .page-slot-games h2 {
    font-size: 1.8em;
  }
  .page-slot-games h3 {
    font-size: 1.3em;
  }
  .page-slot-games .hero-content p {
    font-size: 1.1em;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-slot-games .feature-item img, .page-slot-games .step-item img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-slot-games section {
    padding: 40px 0;
  }
  .page-slot-games .hero-section {
    padding: 40px 15px;
  }
  .page-slot-games .hero-image img {
    border-radius: 4px;
  }
  .page-slot-games h1 {
    font-size: 1.8em;
  }
  .page-slot-games h2 {
    font-size: 1.6em;
  }
  .page-slot-games .feature-grid, .page-slot-games .game-cards, .page-slot-games .guide-steps, .page-slot-games .image-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games .faq-question {
    padding: 12px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1em;
  }
  .page-slot-games .cta-bottom-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-slot-games .container {
    padding: 0 15px;
  }
  .page-slot-games h1 {
    font-size: 1.5em;
  }
  .page-slot-games h2 {
    font-size: 1.4em;
  }
  .page-slot-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-slot-games .feature-item img, .page-slot-games .step-item img {
    width: 100px;
    height: 100px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 0.9em;
  }
  .page-slot-games .faq-toggle {
    font-size: 18px;
  }
}