/* style/slot-games.css */
.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
}

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

.page-slot-games__dark-bg {
  background-color: #140C0C; /* Custom background color */
  color: #FFF1E8; /* Custom text color for dark backgrounds */
}

.page-slot-games__light-bg {
  background-color: #ffffff; /* Default light background */
  color: #333333; /* Default dark text */
}

.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit from parent for contrast */
  line-height: 1.2;
}

.page-slot-games__text-main {
  color: #FFF1E8; /* Custom text color */
}

.page-slot-games__card {
  background-color: #2A1212; /* Custom card background */
  color: #FFF1E8; /* Custom text color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.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, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Custom button color */
  color: #FFF1E8;
  border: none;
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background-color: #ffffff;
  color: #C61F1F; /* Main brand color */
  border: 2px solid #C61F1F; /* Main brand color */
}

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

.page-slot-games__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-slot-games__btn-large {
  padding: 18px 35px;
  font-size: 1.1em;
}

/* Hero Banner Section */
.page-slot-games__hero-banner {
  padding-top: 10px; /* Small top padding, assuming body has header offset */
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-slot-games__hero-banner .page-slot-games__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-slot-games__hero-content {
  flex: 1;
  max-width: 50%;
}

.page-slot-games__hero-content .page-slot-games__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  text-align: left;
  color: #FFF1E8;
  line-height: 1.1;
}}