.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 .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700, #8B0000);
  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: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-slot-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #8B0000;
}

.page-slot-games .cta-button:hover {
  background: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

.page-slot-games .secondary-cta {
  background: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games .secondary-cta:hover {
  background: #FFD700;
  color: #8B0000;
  border-color: #8B0000;
}

.page-slot-games .final-cta {
  padding: 20px 50px;
  font-size: 1.6em;
}

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

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

.page-slot-games h2 {
  font-size: 2.5em;
  color: #8B0000;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-slot-games h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slot-games h3 {
  font-size: 1.8em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-slot-games p {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games ul,
.page-slot-games ol {
  list-style-position: inside;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding-left: 20px;
}

.page-slot-games ul li,
.page-slot-games ol li {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
}

.page-slot-games .image-wrapper {
  margin: 40px auto;
  max-width: 800px;
}

.page-slot-games .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

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

.page-slot-games .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  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: 220px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games .game-card h3 {
  font-size: 1.5em;
  color: #8B0000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-slot-games .game-card h3 a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games .game-card h3 a:hover {
  color: #FFD700;
}

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

.page-slot-games .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #8B0000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9em;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-slot-games .btn-small:hover {
  background: #8B0000;
  color: #FFD700;
  border-color: #FFD700;
}

.page-slot-games .section-faq {
  background-color: #fcfcfc;
}

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

.page-slot-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-slot-games .faq-question:hover {
  background: #fff8e1; /* Lighter gold tint */
}

.page-slot-games .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
}

.page-slot-games .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #8B0000;
  transition: transform 0.3s ease;
}

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

.page-slot-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
}

.page-slot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  border-top: 1px solid #eee;
}

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

.page-slot-games .section-final-cta {
  background: linear-gradient(45deg, #8B0000, #B22222);
  color: #ffffff;
  padding: 80px 20px;
}

.page-slot-games .section-final-cta h2 {
  color: #FFD700;
}

.page-slot-games .section-final-cta p {
  color: #ffffff;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games .hero-content h1 {
    font-size: 2.5em;
  }

  .page-slot-games .hero-content p {
    font-size: 1.1em;
  }

  .page-slot-games .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }

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

  .page-slot-games h3 {
    font-size: 1.5em;
  }

  .page-slot-games p,
  .page-slot-games ul li,
  .page-slot-games ol li {
    font-size: 1em;
  }

  .page-slot-games .game-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-slot-games .hero-section {
    padding: 40px 15px;
  }

  .page-slot-games .hero-content h1 {
    font-size: 2em;
  }

  .page-slot-games .hero-content p {
    font-size: 1em;
  }

  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-slot-games section {
    padding: 40px 0;
  }

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

  .page-slot-games h3 {
    font-size: 1.3em;
  }

  .page-slot-games .game-type-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games .game-card img {
    height: 200px;
  }

  .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: 1.5em;
  }

  .page-slot-games .faq-answer {
    padding: 0 20px;
  }

  .page-slot-games .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-games .hero-content h1 {
    font-size: 1.8em;
  }

  .page-slot-games .hero-content p {
    font-size: 0.95em;
  }

  .page-slot-games .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }

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

  .page-slot-games h3 {
    font-size: 1.2em;
  }

  .page-slot-games p,
  .page-slot-games ul li,
  .page-slot-games ol li {
    font-size: 0.95em;
  }

  .page-slot-games .faq-question h3 {
    font-size: 1em;
  }
}