:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --card-bg: #17191F;
  --body-bg: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-slot-games {
  color: var(--text-main); /* #FFF3E6 */
  background: var(--body-bg); /* #0D0E12 */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: var(--body-bg);
  text-align: center;
}

.page-slot-games__hero-image-wrapper {
  margin-bottom: 20px; /* Space between image and content */
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default for desktop */
  border-radius: 8px;
  max-width: 100%;
}

.page-slot-games__hero-content {
  padding: 20px 0 40px;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

/* General Section Styling */
.page-slot-games__section {
  padding: 60px 0;
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-slot-games__section-subtitle {
  font-size: 1.1rem;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.page-slot-games__article-body p {
  margin-bottom: 1em;
  color: var(--text-main);
}

.page-slot-games__article-body ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-slot-games__article-body li {
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-slot-games__guide-step-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__game-btn,
.page-slot-games__promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 150px;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-slot-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-slot-games__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-slot-games__game-btn,
.page-slot-games__promo-btn {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(255, 140, 26, 0.3);
}

.page-slot-games__game-btn:hover,
.page-slot-games__promo-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Features Grid */
.page-slot-games__why-choose-section {
  background: var(--card-bg); /* Darker background for contrast */
  padding: 80px 0;
}