/* style/slot-games.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #E6C200; /* Darker Gold */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-dark: #1A202C; /* Deep Charcoal from design style */
  --bg-dark-body: #000; /* Body background from shared.css */
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark body */
  --card-bg-light: #ffffff;
  --border-color: #333;
  --border-color-light: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(255, 255, 255, 0.1);
}

.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light); /* Default text color for dark body background */
  line-height: 1.6;
}

/* Ensure content is not hidden by fixed header */
.page-slot-games__hero-section {
  padding-top: 120px; /* Adjust based on shared header height */
  padding-bottom: 60px;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

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

.page-slot-games__hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-slot-games__hero-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  font-size: 1.25em;
  color: var(--text-color-light);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-dark);
  border: none;
  cursor: pointer;
}

.page-slot-games__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-dark);
}

.page-slot-games__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-slot-games__cta-button--large {
  padding: 18px 50px;
  font-size: 1.25em;
}

.page-slot-games__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-slot-games__text-dark {
  color: var(--text-color-dark);
}

/* Section styles */
.page-slot-games__intro-section,
.page-slot-games__popular-games-section,
.page-slot-games__tips-section,
.page-slot-games__conclusion-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-slot-games__why-me88-section,
.page-slot-games__how-to-play-section,
.page-slot-games__mobile-section,
.page-slot-games__faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-color-dark);
}

.page-slot-games__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-slot-games__light-bg {
  background-color: var(--bg-light);
  color: var(--text-color-dark);
}

.page-slot-games__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.page-slot-games__content-wrapper p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-slot-games__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}