.page-game-types-slots-deep-dive {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #0d1a2d; /* Darker variant of #003366 for background */
  line-height: 1.6;
}

.page-game-types-slots-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-types-slots-deep-dive__hero-section {
  background: linear-gradient(135deg, #003366 0%, #0a2647 100%); /* Deep Sea Blue gradient */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-game-types-slots-deep-dive__hero-content {
  max-width: 800px;
  z-index: 2;
}

.page-game-types-slots-deep-dive__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Luxury Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-slots-deep-dive__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-game-types-slots-deep-dive__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-game-types-slots-deep-dive__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(80%);
}

.page-game-types-slots-deep-dive__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-types-slots-deep-dive__section:last-of-type {
  border-bottom: none;
}

.page-game-types-slots-deep-dive__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Luxury Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-types-slots-deep-dive__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Crimson Red */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-types-slots-deep-dive__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #DC143C;
  padding-left: 15px;
}

.page-game-types-slots-deep-dive p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #c0c0c0;
}

.page-game-types-slots-deep-dive a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-types-slots-deep-dive a:hover {
  color: #e0b800;
}

.page-game-types-slots-deep-dive__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-game-types-slots-deep-dive__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1.5em;
  color: #c0c0c0;
}

.page-game-types-slots-deep-dive__list li {
  margin-bottom: 0.8em;
  font-size: 1.1em;
}

.page-game-types-slots-deep-dive__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Crimson Red */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-game-types-slots-deep-dive__cta-button:hover {
  background-color: #b00f2e;
  transform: translateY(-3px);
}

.page-game-types-slots-deep-dive__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-types-slots-deep-dive__cta-button--secondary {
  background-color: #003366;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-game-types-slots-deep-dive__cta-button--secondary:hover {
  background-color: #0a2647;
  border-color: #e0b800;
  color: #e0b800;
}

.page-game-types-slots-deep-dive__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-slots-deep-dive__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-types-slots-deep-dive__game-card {
  background-color: #0a2647; /* Darker blue */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-types-slots-deep-dive__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-game-types-slots-deep-dive__game-image {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #003366;
}

.page-game-types-slots-deep-dive__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-slots-deep-dive__game-description {
  font-size: 1em;
  color: #b0b0b0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-types-slots-deep-dive__game-button {
  display: inline-block;
  background-color: #DC143C;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-game-types-slots-deep-dive__game-button:hover {
  background-color: #b00f2e;
}

.page-game-types-slots-deep-dive__footer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #c0c0c0;
}

.page-game-types-slots-deep-dive__responsible-gambling {
  background-color: #002244; /* Slightly lighter than main background */
  padding: 80px 0;
  text-align: center;
}

.page-game-types-slots-deep-dive__responsible-gambling .page-game-types-slots-deep-dive__section-title {
  color: #FFD700;
}

.page-game-types-slots-deep-dive__faq {
  padding: 60px 0;
}

.page-game-types-slots-deep-dive__faq-item {
  background-color: #0a2647;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-slots-deep-dive__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-slots-deep-dive__faq-answer {
  font-size: 1.05em;
  color: #b0b0b0;
}

.page-game-types-slots-deep-dive__call-to-action {
  background: linear-gradient(90deg, #003366, #1a477a); /* Gradient for CTA */
  padding: 80px 0;
  text-align: center;
}

.page-game-types-slots-deep-dive__call-to-action .page-game-types-slots-deep-dive__section-title {
  color: #FFD700;
}

.page-game-types-slots-deep-dive__cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-types-slots-deep-dive__hero-title {
    font-size: 2.5em;
  }
  .page-game-types-slots-deep-dive__section-title {
    font-size: 2em;
  }
  .page-game-types-slots-deep-dive__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-game-types-slots-deep-dive__hero-section {
    padding: 80px 0;
  }
  .page-game-types-slots-deep-dive__hero-title {
    font-size: 2em;
  }
  .page-game-types-slots-deep-dive__hero-description {
    font-size: 1em;
  }
  .page-game-types-slots-deep-dive__section {
    padding: 40px 0;
  }
  .page-game-types-slots-deep-dive__section-title {
    font-size: 1.8em;
  }
  .page-game-types-slots-deep-dive__game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-slots-deep-dive__cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }
  .page-game-types-slots-deep-dive__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-game-types-slots-deep-dive__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-slots-deep-dive__section-title {
    font-size: 1.5em;
  }
  .page-game-types-slots-deep-dive__sub-title {
    font-size: 1.3em;
  }
  .page-game-types-slots-deep-dive p, .page-game-types-slots-deep-dive__list li {
    font-size: 0.95em;
  }
  .page-game-types-slots-deep-dive__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}