:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-register-bg: #C30808;
  --button-register-text: #FFFF00;
  --button-login-bg: #C30808; /* Assuming login also uses the same red */
  --button-login-text: #FFFF00; /* Assuming login also uses the same yellow */
  --light-bg: #ffffff;
  --dark-bg: #017439;
  --border-color: #e0e0e0;
}

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

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

.page-slot-games__container--narrow {
  max-width: 800px;
}

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

.page-slot-games__section--intro {
  padding-bottom: 40px;
}

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-slot-games__section-title--light {
  color: var(--text-color-light);
}

.page-slot-games__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: left;
}

.page-slot-games__text-center {
  text-align: center;
}

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

/* Hero Section */
.page-slot-games__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); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #339966 100%); /* Green gradient */
  color: var(--text-color-light);
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above any potential background layers */
}

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Limit hero image width slightly */
}

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-games__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-slot-games__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  text-align: center;
}

.page-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-register {
  background: var(--button-register-bg);
  color: var(--button-register-text);
  border: 2px solid var(--button-register-text);
}

.page-slot-games__btn-register:hover {
  background: #a30606; /* Slightly darker red */
}

.page-slot-games__btn-login {
  background: var(--button-login-bg);
  color: var(--button-login-text);
  border: 2px solid var(--button-login-text);
}

.page-slot-games__btn-login:hover {
  background: #a30606; /* Slightly darker red */
}