/* style/casino-slots.css */

/* Ensure the main content has top padding to clear the fixed header */
.page-casino-slots {
  padding-top: var(--header-offset, 120px); /* Default for desktop, updated by JS */
  background-color: #FFFFFF; /* Body background is light, so content background is light */
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-casino-slots__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero to contrast with image and text */
  color: #FFFFFF; /* Light text for dark background */
}

.page-casino-slots__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

.page-casino-slots__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-casino-slots__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-casino-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight with login button color */
}

.page-casino-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-casino-slots__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-casino-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-casino-slots__btn--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-casino-slots__btn--register:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino-slots__btn--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino-slots__btn--login:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-casino-slots__btn--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino-slots__btn--primary:hover {
  background-color: #e0a73d;
}

.page-casino-slots__btn--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.page-casino-slots__btn--secondary:hover {
  background-color: #333333;
}

.page-casino-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
}

.page-casino-slots__btn--small:hover {
  background-color: #e0a73d;
}

/* Section Titles and Text */
.page-casino-slots__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-casino-slots__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #333333;
}

/* Introduction Section */
.page-casino-slots__introduction-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

/* Game Categories Section */
.page-casino-slots__game-categories-section {
  padding: 60px 0;
}

.page-casino-slots__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slots__category-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.page-casino-slots__category-card:hover {
  transform: translateY(-5px);
}

.page-casino-slots__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino-slots__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino-slots__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-casino-slots__card-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino-slots__card-btn:hover {
  background-color: #e0a73d;
}

/* Features Section */
.page-casino-slots__features-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-casino-slots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slots__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-casino-slots__feature-item:hover {
  transform: translateY(-5px);
}

.page-casino-slots__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino-slots__feature-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-casino-slots__feature-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-slots__feature-link:hover {
  text-decoration: underline;
}

/* Getting Started Section */
.page-casino-slots__getting-started-section {
  padding: 60px 0;
}

.page-casino-slots__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slots__step-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-casino-slots__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 2px solid #FFFFFF;
}

.page-casino-slots__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-casino-slots__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsible Gaming Section */
.page-casino-slots__responsible-gaming-section {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-casino-slots__responsible-gaming-section .page-casino-slots__section-title {
  color: #FFFFFF;
}

.page-casino-slots__responsible-gaming-section .page-casino-slots__text-content {
  color: #e0e0e0;
}

/* FAQ Section */
.page-casino-slots__faq-section {
  padding: 60px 0;
}

.page-casino-slots__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-casino-slots__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-casino-slots__faq-answer {
  font-size: 1em;
  color: #555555;
  padding-left: 15px;
  border-left: 3px solid #FCBC45;
  margin-top: 15px;
}

/* Call to Action Section */
.page-casino-slots__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-casino-slots__cta-section .page-casino-slots__section-title {
  color: #FCBC45;
}

.page-casino-slots__cta-section .page-casino-slots__text-content {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-slots__hero-title {
    font-size: 2.8em;
  }
  .page-casino-slots__hero-description {
    font-size: 1.1em;
  }
  .page-casino-slots__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slots {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-casino-slots__hero-section {
    padding: 40px 15px;
  }
  .page-casino-slots__hero-title {
    font-size: 2em;
  }
  .page-casino-slots__hero-description {
    font-size: 1em;
  }
  .page-casino-slots__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-slots__btn {
    width: 100%;
  }
  .page-casino-slots__section-title {
    font-size: 1.8em;
  }
  .page-casino-slots__text-content {
    font-size: 0.95em;
  }
  .page-casino-slots__categories-grid,
  .page-casino-slots__features-grid,
  .page-casino-slots__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slots__card-image,
  .page-casino-slots__card-image img,
  .page-casino-slots__hero-image img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-slots__container {
    padding: 0 15px;
  }

  /* Ensure all content images are responsive and do not cause overflow */
  .page-casino-slots img {
    max-width: 100%;
    height: auto;
  }
  /* Content area images should not be smaller than 200px */
  .page-casino-slots__category-card .page-casino-slots__card-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-casino-slots__hero-title {
    font-size: 1.8em;
  }
  .page-casino-slots__hero-description {
    font-size: 0.9em;
  }
  .page-casino-slots__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-casino-slots__section-title {
    font-size: 1.5em;
  }
  .page-casino-slots__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-casino-slots__faq-question {
    font-size: 1.2em;
  }
}