/* style/slot-games.css */

/* Custom Colors */
:root {
  --one88-primary-color: #11A84E;
  --one88-secondary-color: #22C768;
  --one88-button-gradient-start: #2AD16F;
  --one88-button-gradient-end: #13994A;
  --one88-card-bg: #11271B;
  --one88-background: #08160F;
  --one88-text-main: #F2FFF6;
  --one88-text-secondary: #A7D9B8;
  --one88-border-color: #2E7A4E;
  --one88-glow-color: #57E38D;
  --one88-gold-color: #F2C14E;
  --one88-divider-color: #1E3A2A;
  --one88-deep-green: #0A4B2C;
}

.page-slot-games {
  background-color: var(--one88-background);
  color: var(--one88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--one88-deep-green);
}

.page-slot-games__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure image doesn't stretch beyond max-width */
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
}

.page-slot-games__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--one88-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-slot-games__description {
  font-size: 1.2rem;
  color: var(--one88-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}