:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login-color: #EA7C07;
  --border-color: #e0e0e0;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
}

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

.page-slot-games a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: #1a7bbd; /* Darker shade of primary for hover */
}

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

/* 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 not hidden by fixed header */
  background: linear-gradient(135deg, var(--primary-color), #5bc0de); /* Gradient using primary color */
  color: var(--text-light);
  overflow: hidden; /* Prevent image overflow */
}

.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 background effects */
}