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

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

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

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

.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3 {
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-slot-games h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games h2 {
  font-size: 2.5em;
}

.page-slot-games h3 {
  font-size: 1.8em;
  color: #003366;
}

.page-slot-games p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-slot-games .inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-slot-games .inline-link:hover {
  color: #FFD700;
}

.page-slot-games .cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 15px 40px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #003366;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games .primary-button {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #003366;
}

.page-slot-games .secondary-button {
  background: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games .secondary-button:hover {
  background: #002244;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 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: 80px 20px;
  background: #003366; /* Fallback background */
  color: #ffffff;
}

.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;
}

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

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

.page-slot-games .hero-content h1 {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games .hero-content p {
  color: #ffffff;
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Section Intro */
.page-slot-games .section-intro p {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 20px;
}

.page-slot-games .section-intro img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Feature Grid */
.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: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px 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(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games .feature-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-slot-games .feature-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #003366;
}

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

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

.page-slot-games .game-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-slot-games .game-card h3 {
  font-size: 1.5em;
  margin: 20px 0 10px;
  color: #003366;
}

.page-slot-games .game-card h3 .game-link {
  color: #003366;
  text-decoration: none;
}

.page-slot-games .game-card h3 .game-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-slot-games .game-card p {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-slot-games .game-card .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #003366;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-slot-games .game-card .btn-small:hover {
  background: #FFA500;
}

.page-slot-games .more-games-text {
  margin-top: 40px;
  font-style: italic;
  color: #666666;
}

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

.page-slot-games .section-promotions li {
  background-color: #fefefe;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333333;
  text-align: left;
}

.page-slot-games .section-promotions li strong {
  color: #003366;
}

/* How To Play */
.page-slot-games .steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-slot-games .steps-list li {
  background-color: #fefefe;
  margin-bottom: 20px;
  padding: 25px 30px 25px 70px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: left;
  font-size: 1.1em;
}

.page-slot-games .steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

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

.page-slot-games .safety-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-slot-games .safety-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-slot-games .safety-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #003366;
}

.page-slot-games .safety-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

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

.page-slot-games .faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-slot-games .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.page-slot-games .faq-item.active .faq-question {
  border-radius: 8px 8px 0 0;
  background-color: #f5f5f5;
}

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

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

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

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

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

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

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

/* Bottom CTA */
.page-slot-games .section-cta-bottom {
  background: #003366;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-slot-games .section-cta-bottom h2 {
  color: #FFD700;
  font-size: 2.8em;
}

.page-slot-games .section-cta-bottom p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ffffff;
}

.page-slot-games .section-cta-bottom .cta-button {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #003366;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games h1 {
    font-size: 2.8em;
  }
  .page-slot-games h2 {
    font-size: 2em;
  }
  .page-slot-games .hero-content p {
    font-size: 1.1em;
  }
  .page-slot-games .feature-item img {
    width: 80px;
    height: 80px;
  }
  .page-slot-games .game-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-slot-games section {
    padding: 40px 0;
  }
  .page-slot-games h1 {
    font-size: 2.2em;
  }
  .page-slot-games h2 {
    font-size: 1.8em;
  }
  .page-slot-games h3 {
    font-size: 1.4em;
  }
  .page-slot-games p {
    font-size: 1em;
  }
  .page-slot-games .hero-section {
    padding: 60px 15px;
  }
  .page-slot-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-slot-games .feature-grid, .page-slot-games .game-cards-grid, .page-slot-games .safety-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games .feature-item, .page-slot-games .game-card, .page-slot-games .safety-item {
    padding: 20px;
  }
  .page-slot-games .steps-list li {
    padding: 20px 20px 20px 60px;
    font-size: 1em;
  }
  .page-slot-games .steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-slot-games .faq-question {
    padding: 15px 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 20px;
  }
  .page-slot-games .faq-answer {
    padding: 15px 20px;
  }
  .page-slot-games .section-cta-bottom h2 {
    font-size: 2em;
  }
  .page-slot-games .section-cta-bottom p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-slot-games h1 {
    font-size: 1.8em;
  }
  .page-slot-games .hero-content h1 {
    font-size: 2em;
  }
  .page-slot-games .hero-content p {
    font-size: 0.95em;
  }
  .page-slot-games .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-slot-games .feature-item h3, .page-slot-games .game-card h3, .page-slot-games .safety-item h3 {
    font-size: 1.2em;
  }
  .page-slot-games .game-card img {
    height: 150px;
  }
}