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

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

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

.page-slot-games h1, .page-slot-games h2, .page-slot-games h3, .page-slot-games h4 {
  color: #8B0000; /* Deep Red */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games h1 {
  font-size: 3.2em;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
}

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

.page-slot-games p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-slot-games ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-slot-games ul li {
  margin-bottom: 10px;
}

/* 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: #8B0000;
  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;
  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 h1 {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 15px;
}

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

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

.page-slot-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-slot-games .cta-button.primary {
  background: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  border: 2px solid #FFD700;
}

.page-slot-games .cta-button.primary:hover {
  background: #fff;
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

/* 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 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 25px rgba(0, 0, 0, 0.15);
}

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

.page-slot-games .feature-item h4 {
  color: #8B0000;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

/* Game Categories */
.page-slot-games .game-category {
  margin-bottom: 50px;
}

.page-slot-games .game-category h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #8B0000;
}

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

.page-slot-games .game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .game-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-slot-games .game-info {
  padding: 20px;
}

.page-slot-games .game-info h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

.page-slot-games .game-info h4 a:hover {
  color: #FFD700;
}

.page-slot-games .game-info p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.page-slot-games .game-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #8B0000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-slot-games .game-button:hover {
  background-color: #8B0000;
  color: #FFD700;
}

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

.page-slot-games .step-item {
  background-color: #fefefe;
  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 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-slot-games .step-item h3 {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

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

.page-slot-games .promotion-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .promo-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games .promo-info {
  padding: 20px;
}

.page-slot-games .promo-info h4 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slot-games .promo-info h4 a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games .promo-info h4 a:hover {
  color: #FFD700;
}

.page-slot-games .promo-info p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
}

.page-slot-games .promotion-footer-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-slot-games .promotion-footer-text a {
  color: #8B0000;
  font-weight: bold;
  text-decoration: none;
}

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

/* FAQ Section */
.page-slot-games .faq-list {
  margin-top: 40px;
}

.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: 15px 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-slot-games .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #8B0000;
}

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

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

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

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

.page-slot-games .faq-answer p {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-slot-games .faq-answer a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

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

/* 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;
  }
}

@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.5em;
  }
  .page-slot-games .hero-section {
    padding: 40px 15px;
  }
  .page-slot-games .hero-image img {
    border-radius: 4px;
  }
  .page-slot-games .hero-content h1 {
    font-size: 2.5em;
  }
  .page-slot-games .hero-content p {
    font-size: 1em;
  }
  .page-slot-games .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 80%;
    max-width: 300px;
  }
  .page-slot-games .feature-grid, .page-slot-games .game-card-grid, .page-slot-games .steps-grid, .page-slot-games .promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games .feature-item, .page-slot-games .game-card, .page-slot-games .step-item, .page-slot-games .promotion-card {
    margin-bottom: 20px;
  }
  .page-slot-games .faq-question {
    padding: 12px 15px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 20px;
  }
  .page-slot-games .faq-answer {
    padding: 0 15px;
  }
  .page-slot-games .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games h1 {
    font-size: 1.8em;
  }
  .page-slot-games h2 {
    font-size: 1.5em;
  }
  .page-slot-games h3 {
    font-size: 1.3em;
  }
  .page-slot-games .hero-content h1 {
    font-size: 2em;
  }
  .page-slot-games .cta-button {
    font-size: 14px;
    padding: 10px 25px;
  }
  .page-slot-games .feature-icon, .page-slot-games .step-icon {
    width: 80px;
    height: 80px;
  }
}