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

.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: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  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;
  z-index: 1;
}

.page-slot-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-slot-games .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107;
  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: #e0e0e0;
}

.page-slot-games .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #ffc107;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-slot-games .cta-button:hover {
  background: #e0a800;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-slot-games h2 {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-slot-games h3 {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.page-slot-games ol, .page-slot-games ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.page-slot-games ol li, .page-slot-games ul li {
  background-color: #fefefe;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #007bff;
}

.page-slot-games ol li h3, .page-slot-games ul li h3 {
  margin-top: 0;
  color: #007bff;
  font-size: 1.5em;
}

.page-slot-games ol li p, .page-slot-games ul li p {
  font-size: 1.05em;
  color: #444;
}

.page-slot-games .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-slot-games .btn-primary {
  background: #007bff;
}

.page-slot-games .btn-primary:hover {
  background: #0056b3;
}

.page-slot-games .btn-secondary {
  background: #ffc107;
  color: #333;
}

.page-slot-games .btn-secondary:hover {
  background: #e0a800;
}

.page-slot-games .card-link {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games .card-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

.page-slot-games .game-type-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-slot-games .game-type-card h3 {
  font-size: 1.6em;
  margin-top: 0;
  padding: 0 20px;
  color: #007bff;
}

.page-slot-games .game-type-card p {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
}

/* Section with Image Right */
.page-slot-games .section-tips {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games .section-tips .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.page-slot-games .section-tips .section-image-right {
  flex: 1;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 300px;
}

.page-slot-games .section-tips ul {
  flex: 2;
  min-width: 300px;
  padding-left: 0;
  list-style: none;
}

.page-slot-games .section-tips ul li {
  border-left: 5px solid #ffc107;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.page-slot-games .section-tips ul li h3 {
  color: #007bff;
  margin-top: 0;
}

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

.page-slot-games .promo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-slot-games .promo-card h3 {
  font-size: 1.6em;
  margin-top: 0;
  padding: 0 20px;
  color: #007bff;
}

.page-slot-games .promo-card p {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
}

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

.page-slot-games .feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #ffc107;
}

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

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

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

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

/* 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: 18px 25px;
  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.2em;
  color: #0056b3;
}

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

.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 accommodate content */
  padding: 20px 25px;
}

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

.page-slot-games .faq-answer p {
  margin-bottom: 0;
  color: #444;
}

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

.page-slot-games .faq-answer a:hover {
  color: #0056b3;
}

/* Bottom CTA Section */
.page-slot-games .section-cta-bottom {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-slot-games .section-cta-bottom h2 {
  color: #ffc107;
  font-size: 3em;
  margin-bottom: 25px;
}

.page-slot-games .section-cta-bottom h2::after {
  background-color: #ffc107;
}

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

.page-slot-games .btn-lg {
  padding: 18px 50px;
  font-size: 1.4em;
  border-radius: 8px;
  background: #ffc107;
  color: #000000;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games .btn-lg:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games .hero-content h1 {
    font-size: 2.8em;
  }
  .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 {
    font-size: 1em;
  }
  .page-slot-games section {
    padding: 40px 0;
  }
  .page-slot-games .section-tips .container {
    flex-direction: column;
    align-items: center;
  }
  .page-slot-games .section-tips .section-image-right {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .page-slot-games .feature-item img {
    width: 100px;
    height: 100px;
  }
  .page-slot-games .section-cta-bottom h2 {
    font-size: 2.5em;
  }
  .page-slot-games .btn-lg {
    padding: 15px 40px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games .hero-section {
    padding: 40px 15px;
  }
  .page-slot-games .hero-image {
    margin-bottom: 20px;
  }
  .page-slot-games .hero-content h1 {
    font-size: 2.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 h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games h3 {
    font-size: 1.3em;
  }
  .page-slot-games ol li, .page-slot-games ul li {
    padding: 20px;
  }
  .page-slot-games .game-type-card img, .page-slot-games .promo-card img {
    height: 180px;
  }
  .page-slot-games .faq-question {
    padding: 15px 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games .faq-answer {
    padding: 0 20px;
  }
  .page-slot-games .faq-item.active .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;
  }
  .page-slot-games .btn-lg {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-slot-games .hero-content h1 {
    font-size: 1.8em;
  }
  .page-slot-games .hero-content p {
    font-size: 0.9em;
  }
  .page-slot-games .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-slot-games h2 {
    font-size: 1.5em;
  }
  .page-slot-games h3 {
    font-size: 1.2em;
  }
  .page-slot-games .game-type-grid, .page-slot-games .promo-grid, .page-slot-games .feature-list {
    grid-template-columns: 1fr;
  }
  .page-slot-games .game-type-card img, .page-slot-games .promo-card img {
    height: 150px;
  }
  .page-slot-games .section-cta-bottom h2 {
    font-size: 1.8em;
  }
}