.page-slot-games {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #2a2a2a;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
}

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

.page-slot-games .section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

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

.page-slot-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  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: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

/* 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: var(--bg-dark);
}

.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 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-slot-games .hero-content p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

/* Section Intro */
.page-slot-games .section-intro {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-slot-games .section-intro p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

.page-slot-games .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px 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: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-slot-games .feature-item p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Section Game Types */
.page-slot-games .section-game-types {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-slot-games .section-game-types .section-title {
  color: var(--primary-color);
}

.page-slot-games .section-game-types p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

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

.page-slot-games .game-type-card {
  background-color: #3a3a3a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .game-type-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games .game-type-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games .game-type-card p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #cccccc;
  margin: 0;
}

/* Section How To Play */
.page-slot-games .section-how-to-play {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-slot-games .section-how-to-play p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

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

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

.page-slot-games .step-item h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-slot-games .step-item p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.page-slot-games .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games .btn-small:hover {
  background: #a30000;
}

/* Section Promotions */
.page-slot-games .section-promotions {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-slot-games .section-promotions .section-title {
  color: var(--primary-color);
}

.page-slot-games .section-promotions p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

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

.page-slot-games .promo-card {
  background-color: #3a3a3a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games .promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games .promo-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games .promo-card p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-slot-games .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games .btn-promo:hover {
  background: #FFC107;
}

/* Section Tips */
.page-slot-games .section-tips {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-slot-games .section-tips p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

.page-slot-games .tip-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .tip-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games .tip-item h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-slot-games .tip-item p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Section Mobile */
.page-slot-games .section-mobile {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-slot-games .section-mobile .section-title {
  color: var(--primary-color);
}

.page-slot-games .section-mobile p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-slot-games .mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.page-slot-games .mobile-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-slot-games .mobile-text h3 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-slot-games .mobile-text p {
  text-align: left;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-slot-games .mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.page-slot-games .mobile-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Section Support */
.page-slot-games .section-support {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-slot-games .section-support p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

.page-slot-games .support-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-slot-games .support-item h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-slot-games .support-item p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Section FAQ */
.page-slot-games .section-faq {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-slot-games .section-faq .section-title {
  color: var(--primary-color);
}

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

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

.page-slot-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #3a3a3a;
  color: var(--primary-color);
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-slot-games .faq-question h3 {
  font-size: 20px;
  margin: 0;
  color: var(--primary-color);
}

.page-slot-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.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: #2c2c2c;
  color: #cccccc;
  border-radius: 0 0 8px 8px;
}

.page-slot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

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

.page-slot-games .faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

.page-slot-games .btn-faq {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-slot-games .btn-faq:hover {
  background: #FFC107;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games .hero-content h1 {
    font-size: 40px;
  }
  .page-slot-games .hero-content p {
    font-size: 18px;
  }
  .page-slot-games .section-title {
    font-size: 32px;
  }
  .page-slot-games .mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-games .mobile-text {
    text-align: center;
  }
  .page-slot-games .mobile-text p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-slot-games .hero-section {
    padding: 40px 15px;
  }
  .page-slot-games .hero-content h1 {
    font-size: 32px;
  }
  .page-slot-games .hero-content p {
    font-size: 16px;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-slot-games .section-title {
    font-size: 28px;
  }
  .page-slot-games .section-intro p,
  .page-slot-games .section-game-types p,
  .page-slot-games .section-how-to-play p,
  .page-slot-games .section-promotions p,
  .page-slot-games .section-tips p,
  .page-slot-games .section-mobile p,
  .page-slot-games .section-support p {
    font-size: 16px;
  }
  .page-slot-games .feature-item h3,
  .page-slot-games .game-type-card h3,
  .page-slot-games .step-item h3,
  .page-slot-games .promo-card h3,
  .page-slot-games .tip-item h3,
  .page-slot-games .support-item h3 {
    font-size: 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 18px;
  }
  .page-slot-games .faq-question {
    padding: 15px;
  }
  .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 .hero-content h1 {
    font-size: 28px;
  }
  .page-slot-games .hero-content p {
    font-size: 14px;
  }
  .page-slot-games .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }
  .page-slot-games .section-title {
    font-size: 24px;
  }
  .page-slot-games .feature-item img,
  .page-slot-games .support-item img {
    width: 80px;
    height: 80px;
  }
  .page-slot-games .btn-small,
  .page-slot-games .btn-promo {
    font-size: 14px;
    padding: 8px 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 16px;
  }
  .page-slot-games .faq-toggle {
    font-size: 20px;
  }
}