/* style/slot-games.css */
.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--neon-dark-bg); /* Inherited from shared.css */
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games__section {
  padding: 80px 0;
}

.page-slot-games__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-slot-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-slot-games__hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 80px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-slot-games__hero-content {
  flex: 1;
  padding-right: 40px;
  z-index: 1;
}

.page-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-slot-games__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
}

.page-slot-games__hero-image {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-slot-games__hero-cta-group, .page-slot-games__cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary, .page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-slot-games__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-slot-games__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Brand primary color */
  border: 2px solid #017439;
}

.page-slot-games__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005c2d;
  border-color: #005c2d;
}

/* Section Titles and Descriptions */
.page-slot-games__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: inherit;
}

.page-slot-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: inherit;
}

/* Features Grid */
.page-slot-games__features-grid, .page-slot-games__game-grid, .page-slot-games__promo-grid, .page-slot-games__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__feature-item, .page-slot-games__game-card, .page-slot-games__promo-card, .page-slot-games__strategy-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-slot-games__dark-bg .page-slot-games__feature-item,
.page-slot-games__dark-bg .page-slot-games__game-card,
.page-slot-games__dark-bg .page-slot-games__promo-card,
.page-slot-games__dark-bg .page-slot-games__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-slot-games__feature-icon, .page-slot-games__game-image, .page-slot-games__promo-image {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-slot-games__game-image, .page-slot-games__promo-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.page-slot-games__feature-title, .page-slot-games__game-title, .page-slot-games__promo-title, .page-slot-games__strategy-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: inherit;
}

.page-slot-games__feature-text, .page-slot-games__game-text, .page-slot-games__promo-text, .page-slot-games__strategy-text {
  font-size: 1em;
  color: inherit;
}

/* How to Play */
.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__step-item {
  background-color: #f8f8f8;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-slot-games__step-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 10px;
}

.page-slot-games__step-text {
  font-size: 1.1em;
}

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}