/* style/game-reviews-slot-machines-detailed.css */
.page-game-reviews-slot-machines-detailed {
  font-family: Arial, sans-serif;
  color: #e5d1bb; /* Light text for dark background */
  background-color: #1A2E44;
}

.page-game-reviews-slot-machines-detailed .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-reviews-slot-machines-detailed .hero-section {
  background: linear-gradient(135deg, #1A2E44, #0f1c2b);
  padding: 80px 0;
  text-align: center;
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

.page-game-reviews-slot-machines-detailed .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slot-machines-detailed .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #e5d1bb;
}

.page-game-reviews-slot-machines-detailed .content-section {
  padding: 60px 0;
  background-color: #1A2E44;
}

.page-game-reviews-slot-machines-detailed .article-content {
  background-color: #0f1c2b;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-slot-machines-detailed h2 {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-game-reviews-slot-machines-detailed h3 {
  font-size: 1.8em;
  color: #e5d1bb;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-slot-machines-detailed p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #d1c5bb;
}

.page-game-reviews-slot-machines-detailed ul,
.page-game-reviews-slot-machines-detailed ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #d1c5bb;
}

.page-game-reviews-slot-machines-detailed ol {
  list-style-type: decimal;
}

.page-game-reviews-slot-machines-detailed li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-reviews-slot-machines-detailed strong {
  color: #FFD700;
}

.page-game-reviews-slot-machines-detailed .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.page-game-reviews-slot-machines-detailed .primary-btn {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-game-reviews-slot-machines-detailed .primary-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-reviews-slot-machines-detailed .secondary-btn {
  background-color: #1A2E44;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-slot-machines-detailed .secondary-btn:hover {
  background-color: #2b4563;
  transform: translateY(-2px);
}

.page-game-reviews-slot-machines-detailed figure {
  margin: 30px 0;
  text-align: center;
}

.page-game-reviews-slot-machines-detailed .img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slot-machines-detailed figcaption {
  font-style: italic;
  color: #999;
  margin-top: 10px;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-reviews-slot-machines-detailed .hero-section h1 {
    font-size: 2.5em;
  }
  .page-game-reviews-slot-machines-detailed h2 {
    font-size: 2em;
  }
  .page-game-reviews-slot-machines-detailed h3 {
    font-size: 1.5em;
  }
  .page-game-reviews-slot-machines-detailed .article-content {
    padding: 20px;
  }
  .page-game-reviews-slot-machines-detailed .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-slot-machines-detailed .hero-section h1 {
    font-size: 2em;
  }
  .page-game-reviews-slot-machines-detailed h2 {
    font-size: 1.8em;
  }
  .page-game-reviews-slot-machines-detailed h3 {
    font-size: 1.3em;
  }
  .page-game-reviews-slot-machines-detailed p {
    font-size: 1em;
  }
  .page-game-reviews-slot-machines-detailed ul,
  .page-game-reviews-slot-machines-detailed ol {
    margin-left: 15px;
  }
  .page-game-reviews-slot-machines-detailed .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}