/* style/slot-games-latest-3d-slots.css */
.page-slot-games-latest-3d-slots {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: #FFFFFF; /* Explicitly set for content area */
}

/* Hero Section */
.page-slot-games-latest-3d-slots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, #017439, #005a2d); /* Brand color gradient */
  color: #ffffff;
  overflow: hidden; /* For image */
}

.page-slot-games-latest-3d-slots__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3; /* Subtle background image */
}

.page-slot-games-latest-3d-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-slot-games-latest-3d-slots__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games-latest-3d-slots__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFF00; /* Special color for hero title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-latest-3d-slots__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-latest-3d-slots__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Container & Section Styles */
.page-slot-games-latest-3d-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-slot-games-latest-3d-slots__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439; /* Default section title color */
}

.page-slot-games-latest-3d-slots__introduction-section {
  padding: 60px 0;
}

.page-slot-games-latest-3d-slots__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}