
    /* General Styling for 1-slot-l-g page */
.page-1-slot-l-g {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-1-slot-l-g__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker blue for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-1-slot-l-g__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffcc00; /* Gold accent */
  border-radius: 2px;
}

.page-1-slot-l-g__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-1-slot-l-g__hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Responsive height */
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 10px; /* Adjust for fixed header */
  box-sizing: border-box;
}

.page-1-slot-l-g__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-1-slot-l-g__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 2;
}

.page-1-slot-l-g__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-1-slot-l-g__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffcc00; /* Gold for title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-1-slot-l-g__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-1-slot-l-g__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-1-slot-l-g__hero-button {
  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, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-1-slot-l-g__hero-button--register {
  background-color: #ffcc00; /* Gold button */
  color: #333;
}

.page-1-slot-l-g__hero-button--register:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-1-slot-l-g__hero-button--login {
  background-color: #007bff; /* Blue button */
  color: #fff;
}

.page-1-slot-l-g__hero-button--login:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* Introduction Section */
.page-1-slot-l-g__introduction-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-1-slot-l-g__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Games Section */
.page-1-slot-l-g__games-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-1-slot-l-g__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-1-slot-l-g__game-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.page-1-slot-l-g__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-1-slot-l-g__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 3px solid #ffcc00;
}

.page-1-slot-l-g__game-title {
  font-size: 1.5em;
  color: #0056b3;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-1-slot-l-g__game-description {
  font-size: 1em;
  color: #555;
  padding: 0 15px;
}

/* Promotion Section */
.page-1-slot-l-g__promo-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.page-1-slot-l-g__promo-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-1-slot-l-g__promo-button-wrapper {
  margin-top: 30px;
}

.page-1-slot-l-g__promo-button {
  display: inline-block;
  background-color: #ffcc00;
  color: #333;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-1-slot-l-g__promo-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

/* Providers Section */
.page-1-slot-l-g__providers-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-1-slot-l-g__provider-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-1-slot-l-g__provider-item {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  color: #0056b3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

.page-1-slot-l-g__provider-item:hover {
  transform: translateY(-3px);
}

/* FAQ Section */
.page-1-slot-l-g__faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-1-slot-l-g__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-1-slot-l-g__faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-1-slot-l-g__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f5f5f5;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  color: #0056b3;
  transition: background-color 0.3s ease;
}

.page-1-slot-l-g__faq-question:hover {
  background-color: #e9e9e9;
}

.page-1-slot-l-g__faq-title {
  margin: 0;
  font-size: 1.2em;
  color: #0056b3;
  pointer-events: none; /* Prevent click event on text */
}

.page-1-slot-l-g__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  pointer-events: none; /* Prevent click event on toggle */
  transition: transform 0.3s ease;
  color: #ffcc00;
}

.page-1-slot-l-g__faq-item.active .page-1-slot-l-g__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-1-slot-l-g__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #fff;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.page-1-slot-l-g__faq-item.active .page-1-slot-l-g__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-1-slot-l-g__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #555;
}

/* Call to Action Section */
.page-1-slot-l-g__cta-section {
  padding: 60px 0;
  background-color: #0056b3; /* Blue background */
  color: #fff;
  text-align: center;
}

.page-1-slot-l-g__cta-section .page-1-slot-l-g__section-title {
  color: #ffcc00; /* Gold title */
}

.page-1-slot-l-g__cta-section .page-1-slot-l-g__section-title::after {
  background-color: #ffcc00;
}

.page-1-slot-l-g__cta-section .page-1-slot-l-g__text-content {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #eee;
}

.page-1-slot-l-g__cta-button {
  display: inline-block;
  background-color: #ffcc00;
  color: #333;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-1-slot-l-g__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-1-slot-l-g__hero-title {
    font-size: 3em;
  }
  .page-1-slot-l-g__hero-description {
    font-size: 1.2em;
  }
  .page-1-slot-l-g__section-title {
    font-size: 2em;
  }
  .page-1-slot-l-g__game-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-1-slot-l-g__hero-section {
    height: 70vh;
    min-height: 350px;
  }
  .page-1-slot-l-g__hero-title {
    font-size: 2.5em;
  }
  .page-1-slot-l-g__hero-description {
    font-size: 1.1em;
  }
  .page-1-slot-l-g__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-1-slot-l-g__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-1-slot-l-g__container {
    padding: 15px;
  }
  .page-1-slot-l-g__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-1-slot-l-g__text-content {
    font-size: 1em;
  }
  
  /* List item responsive adjustments */
  .page-1-slot-l-g__game-list,
  .page-1-slot-l-g__provider-list {
    display: flex; /* Change to flex for better control */
    flex-direction: column; /* Stack items vertically */
    gap: 15px; /* Reduce gap */
    padding: 0 !important; /* Ensure no extra padding */
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-1-slot-l-g__game-item,
  .page-1-slot-l-g__provider-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important; /* Adjust padding */
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-1-slot-l-g__game-image {
    height: 180px;
  }

  .page-1-slot-l-g__faq-question {
    padding: 15px 20px;
  }
  .page-1-slot-l-g__faq-title {
    font-size: 1.1em;
  }
  .page-1-slot-l-g__faq-answer {
    padding: 15px 20px !important;
  }
  .page-1-slot-l-g__faq-answer p {
    font-size: 0.95em;
  }
  .page-1-slot-l-g__faq-toggle {
    font-size: 1.5em;
  }

  .page-1-slot-l-g__promo-button,
  .page-1-slot-l-g__cta-button {
    width: 90%;
    padding: 15px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-1-slot-l-g__hero-section {
    height: 80vh;
    min-height: 300px;
  }
  .page-1-slot-l-g__hero-title {
    font-size: 2em;
  }
  .page-1-slot-l-g__hero-description {
    font-size: 1em;
  }
  .page-1-slot-l-g__section-title {
    font-size: 1.6em;
  }
  .page-1-slot-l-g__text-content {
    font-size: 0.95em;
  }
  .page-1-slot-l-g__game-image {
    height: 150px;
  }
  .page-1-slot-l-g__game-title {
    font-size: 1.3em;
  }
}

/* Ensure images are responsive */
.page-1-slot-l-g__hero-image,
.page-1-slot-l-g__content-image,
.page-1-slot-l-g__game-image,
.page-1-slot-l-g__promo-image {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* Image container responsiveness */
.page-1-slot-l-g__game-item,
.page-1-slot-l-g__promo-section,
.page-1-slot-l-g__introduction-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-1-slot-l-g__hero-image,
  .page-1-slot-l-g__content-image,
  .page-1-slot-l-g__game-image,
  .page-1-slot-l-g__promo-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-1-slot-l-g__promo-section,
  .page-1-slot-l-g__introduction-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
}
  