/* style/slot-games.css */

/* Custom CSS variables for this page if needed, otherwise use shared ones */
:root {
  --primary-color: #017439; /* Brand green */
  --secondary-color: #FFFFFF; /* White */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-register-login-bg: #C30808; /* Specific for register/login buttons */
  --button-register-login-text: #FFFF00; /* Specific for register/login button text */
  --light-background-color: #f9f9f9; /* A very light grey for subtle contrast */
}

/* Base styles for the page content */
.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light backgrounds */
  background-color: var(--secondary-color); /* Default background for main content */
}

/* Sections */
.page-slot-games__section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-slot-games__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-slot-games__section-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
  color: inherit; /* Inherit color from parent section (dark or light) */
}

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

.page-slot-games__light-bg .page-slot-games__section-title {
  color: var(--text-color-dark);
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add some horizontal padding */
}

.page-slot-games__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-slot-games__strong-text {
  font-weight: bold;
  color: inherit; /* Inherit from parent */
}

.page-slot-games__link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-slot-games__link:hover {
  color: #005f2c; /* A slightly darker green */
}

.page-slot-games__dark-bg .page-slot-games__link {
  color: var(--button-register-login-text); /* Yellow for visibility on dark green */
}
.page-slot-games__dark-bg .page-slot-games__link:hover {
  color: #ffff33;
}


/* 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); /* Fixed header offset */
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-slot-games__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light); /* White text on dark hero background */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-slot-games__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-color-light); /* White text on dark hero background */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button:hover {
  background: #005f2c; /* Slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Image wrappers and list styles */
.page-slot-games__image-wrapper {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-slot-games__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 17px;
}

.page-slot-games__list-item::before {
  content: '✓'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.page-slot-games__dark-bg .page-slot-games__list-item::before {
  color: var(--button-register-login-text); /* Yellow checkmark on dark background */
}

.page-slot-games__ordered-list {
  list-style: decimal;
  padding-left: 40px;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
  font-size: 17px;
}

.page-slot-games__ordered-list .page-slot-games__list-item {
  padding-left: 0;
  margin-bottom: 10px;
}

.page-slot-games__ordered-list .page-slot-games__list-item::before {
  content: none; /* Remove checkmark for ordered list */
}

/* Specific button styles for Register/Login if they appear */
.page-slot-games__btn-register,
.page-slot-games__btn-login {
  background-color: var(--button-register-login-bg);
  color: var(--button-register-login-text);
  border: none;
}

.page-slot-games__btn-register:hover,
.page-slot-games__btn-login:hover {
  background-color: #a40707; /* Slightly darker red */
}

/* Final CTA Section */
.page-slot-games__final-cta-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: 40px;
  }
  .page-slot-games__hero-description {
    font-size: 18px;
  }
  .page-slot-games__section-title {
    font-size: 28px;
  }
  .page-slot-games__paragraph,
  .page-slot-games__list-item,
  .page-slot-games__ordered-list {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-image {
    margin-bottom: 20px;
  }

  .page-slot-games__hero-image img {
    border-radius: 4px;
  }

  .page-slot-games__hero-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .page-slot-games__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-slot-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-slot-games__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-slot-games__paragraph,
  .page-slot-games__list-item,
  .page-slot-games__ordered-list {
    font-size: 15px;
  }

  .page-slot-games__list-item {
    padding-left: 25px;
  }

  .page-slot-games__list-item::before {
    font-size: 18px;
  }

  .page-slot-games__ordered-list {
    padding-left: 25px;
  }

  /* Mobile image responsiveness */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure no horizontal scroll for buttons */
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-slot-games__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

}

/* Color contrast fixes for specific elements if needed */
/* Ensure no CSS filters on images */
.page-slot-games img {
  filter: none; /* Explicitly ensure no filters are applied */
}