.page-slots-games {
  font-family: Arial, sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-slots-games-hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-slots-games-main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for H1 */
  line-height: 1.2;
}

.page-slots-games-lead-text {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0; /* Slightly lighter text for readability */
}

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

.page-slots-games-section:nth-of-type(odd) {
  background-color: #0A2342; /* Dark blue */
}

.page-slots-games-section:nth-of-type(even) {
  background-color: #1A3A60; /* Slightly lighter dark blue */
}

.page-slots-games-section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #FFD700; /* Gold for section titles */
}

.page-slots-games-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-slots-games-highlight {
  color: #FFD700; /* Gold highlight for brand name */
}

.page-slots-games-btn-primary, .page-slots-games-btn-secondary, .page-slots-games-btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-slots-games-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue text on gold */
  font-size: 1.2em;
  border: none;
}

.page-slots-games-btn-primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-slots-games-btn-secondary {
  background-color: #0A2342; /* Dark blue */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
  font-size: 1em;
}

.page-slots-games-btn-secondary:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #0A2342; /* Dark blue text on gold */
  transform: translateY(-2px);
}

.page-slots-games-btn-tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-slots-games-btn-tertiary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

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

.page-slots-games-feature-item {
  background-color: #1A3A60; /* Lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-slots-games-feature-item h3 {
  color: #FFD700; /* Gold for feature titles */
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-slots-games-feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-slots-games-game-category {
  margin-bottom: 60px;
  text-align: left;
}

.page-slots-games-category-title {
  font-size: 2em;
  color: #FFD700; /* Gold for category titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-slots-games-category-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-slots-games-category-content.page-slots-games-reverse {
  flex-direction: row-reverse;
}

.page-slots-games-category-image {
  width: 50%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-slots-games-category-text {
  width: 50%;
}

.page-slots-games-category-text p {
  color: #e0e0e0;
  font-size: 1.05em;
  margin-bottom: 25px;
}

.page-slots-games-how-to-play .page-slots-games-steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: left;
}

.page-slots-games-step-item {
  background-color: #1A3A60;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-step-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-slots-games-step-item p {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-slots-games-promotions .page-slots-games-promotion-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-slots-games-promotion-item {
  background-color: #1A3A60;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-slots-games-promotion-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-slots-games-promotion-item p {
  color: #e0e0e0;
  font-size: 1em;
}

.page-slots-games-promotion-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slots-games-center-cta {
  margin-top: 50px;
  text-align: center;
}

.page-slots-games-platform-features .page-slots-games-feature-list {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: left;
}

.page-slots-games-feature-box {
  background-color: #1A3A60;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slots-games-feature-box h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-slots-games-feature-box p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-slots-games-feature-icon-small {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.page-slots-games-responsible-gaming {
  background-color: #0A2342;
  padding-bottom: 80px;
}

.page-slots-games-responsible-gaming-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-games-related-articles .page-slots-games-articles-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: left;
}

.page-slots-games-article-item {
  background-color: #1A3A60;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slots-games-article-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slots-games-article-item h3 a {
  color: #FFD700; /* Gold for article titles */
  text-decoration: none;
}

.page-slots-games-article-item h3 a:hover {
  text-decoration: underline;
}

.page-slots-games-article-item p {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-slots-games-cta-bottom {
  background-color: #0A2342;
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 992px) {
  .page-slots-games-main-title {
    font-size: 2.8em;
  }
  .page-slots-games-section-title {
    font-size: 2em;
  }
  .page-slots-games-category-content {
    flex-direction: column;
  }
  .page-slots-games-category-content.page-slots-games-reverse {
    flex-direction: column;
  }
  .page-slots-games-category-image,
  .page-slots-games-category-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slots-games-hero-section {
    padding: 80px 0;
  }
  .page-slots-games-main-title {
    font-size: 2.2em;
  }
  .page-slots-games-lead-text {
    font-size: 1.1em;
  }
  .page-slots-games-section-title {
    font-size: 1.8em;
  }
  .page-slots-games-description {
    font-size: 1em;
  }
  .page-slots-games-btn-primary {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-slots-games-hero-section {
    padding: 60px 0;
  }
  .page-slots-games-main-title {
    font-size: 1.8em;
  }
  .page-slots-games-lead-text {
    font-size: 0.95em;
  }
  .page-slots-games-section-title {
    font-size: 1.5em;
  }
  .page-slots-games-btn-primary {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-slots-games-grid, .page-slots-games-articles-grid, .page-slots-games-promotion-grid, .page-slots-games-steps-grid, .page-slots-games-feature-list {
    grid-template-columns: 1fr;
  }
  .page-slots-games-feature-item, .page-slots-games-step-item, .page-slots-games-promotion-item, .page-slots-games-feature-box, .page-slots-games-article-item {
    padding: 20px;
  }
  .page-slots-games-category-title {
    font-size: 1.5em;
  }
}