/* General styling for the page */
.page-249-slotph-login {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding-top: 10px; /* Small padding as body should have header offset */
}

.page-249-slotph-login__section-title {
  font-size: 2.2em;
  color: #0056b3; /* A strong blue for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-249-slotph-login__paragraph {
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding: 0 15px;
  text-align: center;
  font-size: 1.1em;
}

.page-249-slotph-login__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 50px;
}

.page-249-slotph-login__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-249-slotph-login__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-249-slotph-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-249-slotph-login__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-249-slotph-login__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-249-slotph-login__hero-button {
  display: inline-block;
  background-color: #ffcc00; /* Jiliko brand color */
  color: #333;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-249-slotph-login__hero-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-249-slotph-login__hero-button--register {
  background-color: #007bff; /* Primary action color */
  color: #fff;
}

.page-249-slotph-login__hero-button--register:hover {
  background-color: #0056b3;
}

/* Payment & Game Providers Section */
.page-249-slotph-login__payment-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 50px;
}

.page-249-slotph-login__payment-logos,
.page-249-slotph-login__game-provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.page-249-slotph-login__payment-logo {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  box-sizing: border-box;
  object-fit: contain;
}

/* Introduction Section */
.page-249-slotph-login__introduction-section {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 50px;
  text-align: center;
}

.page-249-slotph-login__intro-image {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 30px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Quick Access Section */
.page-249-slotph-login__quick-access-section {
  padding: 50px 20px;
  background-color: #e0f2f7;
  margin-bottom: 50px;
}

.page-249-slotph-login__access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-249-slotph-login__access-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-grow: 1;
  text-align: center;
  max-width: 280px;
  box-sizing: border-box;
}

.page-249-slotph-login__access-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Games Section */
.page-249-slotph-login__games-section {
  padding: 20px;
  background-color: #f0f0f0;
  margin-bottom: 50px;
}

.page-249-slotph-login__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-249-slotph-login__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-249-slotph-login__game-card:hover {
  transform: translateY(-5px);
}

.page-249-slotph-login__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-249-slotph-login__game-card-title {
  font-size: 1.5em;
  color: #0056b3;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-249-slotph-login__game-card-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-249-slotph-login__game-card-button {
  display: inline-block;
  background-color: #ffcc00;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-249-slotph-login__game-card-button:hover {
  background-color: #e6b800;
}

/* Promotions Section */
.page-249-slotph-login__promotions-section {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 50px;
}

.page-249-slotph-login__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-249-slotph-login__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-249-slotph-login__promo-card:hover {
  transform: translateY(-5px);
}

.page-249-slotph-login__promo-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-249-slotph-login__promo-card-title {
  font-size: 1.4em;
  color: #0056b3;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-249-slotph-login__promo-card-description {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-249-slotph-login__promo-card-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-249-slotph-login__promo-card-button:hover {
  background-color: #0056b3;
}

/* Security Section */
.page-249-slotph-login__security-section {
  padding: 20px;
  background-color: #e0f7fa;
  margin-bottom: 50px;
}

.page-249-slotph-login__security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-249-slotph-login__security-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
}

.page-249-slotph-login__security-item-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 15px auto;
  display: block;
  object-fit: contain;
}

.page-249-slotph-login__security-item-title {
  font-size: 1.4em;
  color: #0056b3;
  margin-bottom: 10px;
}

.page-249-slotph-login__security-item-description {
  font-size: 0.95em;
  color: #555;
}

/* FAQ Section */
.page-249-slotph-login__faq-section {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 50px;
}

.page-249-slotph-login__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-249-slotph-login__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-249-slotph-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-249-slotph-login__faq-question:hover {
  background-color: #0056b3;
}

.page-249-slotph-login__faq-question-title {
  margin: 0;
  flex-grow: 1;
  pointer-events: none; /* Prevents text selection interfering with click */
}

.page-249-slotph-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  pointer-events: none; /* Prevents icon interfering with click */
}

.page-249-slotph-login__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  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-249-slotph-login__faq-item.active .page-249-slotph-login__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to show all content */
  padding: 20px !important;
  opacity: 1;
}

.page-249-slotph-login__faq-item.active .page-249-slotph-login__faq-toggle {
  content: "−";
}

.page-249-slotph-login__faq-answer-text {
  margin: 0;
  color: #333;
}

/* Blog Section */
.page-249-slotph-login__blog-section {
  padding: 20px;
  background-color: #f0f0f0;
  margin-bottom: 50px;
}

.page-249-slotph-login__blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-249-slotph-login__blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-249-slotph-login__blog-card:hover {
  transform: translateY(-5px);
}

.page-249-slotph-login__blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-249-slotph-login__blog-card-title {
  font-size: 1.3em;
  margin: 15px 15px 10px 15px;
  line-height: 1.3;
}

.page-249-slotph-login__blog-card-title a {
  color: #0056b3;
  text-decoration: none;
}

.page-249-slotph-login__blog-card-title a:hover {
  text-decoration: underline;
}

.page-249-slotph-login__blog-card-excerpt {
  font-size: 0.9em;
  color: #666;
  margin: 0 15px 15px 15px;
}

.page-249-slotph-login__blog-card-date {
  display: block;
  font-size: 0.8em;
  color: #999;
  margin-top: 10px;
}

.page-249-slotph-login__blog-card-link {
  display: inline-block;
  background-color: #ffcc00;
  color: #333;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px 15px 15px;
  transition: background-color 0.3s ease;
}

.page-249-slotph-login__blog-card-link:hover {
  background-color: #e6b800;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-249-slotph-login__hero-title {
    font-size: 2.8em;
  }
  .page-249-slotph-login__hero-description {
    font-size: 1.1em;
  }
  .page-249-slotph-login__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-249-slotph-login__hero-section {
    min-height: 500px;
  }
  .page-249-slotph-login__hero-title {
    font-size: 2.2em;
  }
  .page-249-slotph-login__hero-description {
    font-size: 1em;
  }
  .page-249-slotph-login__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-249-slotph-login__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-249-slotph-login__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-249-slotph-login__paragraph {
    font-size: 1em;
    padding: 0 10px;
  }

  /* Payment Providers specific mobile styles */
  .page-249-slotph-login__payment-providers {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 15px;
  }
  .page-249-slotph-login__payment-logo {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }
  .page-249-slotph-login__payment-logo img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    object-fit: contain;
  }

  .page-249-slotph-login__access-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-249-slotph-login__access-button {
    max-width: 90%;
    margin: 0 auto;
  }

  .page-249-slotph-login__game-categories,
  .page-249-slotph-login__promo-grid,
  .page-249-slotph-login__security-content,
  .page-249-slotph-login__blog-posts {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-249-slotph-login__game-card,
  .page-249-slotph-login__promo-card,
  .page-249-slotph-login__security-item,
  .page-249-slotph-login__blog-card {
    margin: 0 auto;
    max-width: 400px; /* Constrain width for better readability on narrow screens */
  }

  /* Image responsiveness for mobile */
  .page-249-slotph-login__intro-image,
  .page-249-slotph-login__game-card-image,
  .page-249-slotph-login__promo-card-image,
  .page-249-slotph-login__security-item-image,
  .page-249-slotph-login__blog-card-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-249-slotph-login__intro-image {
    padding: 0 10px;
  }

  /* FAQ specific mobile styles */
  .page-249-slotph-login__faq-list {
    padding: 0 15px;
  }
  .page-249-slotph-login__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-249-slotph-login__faq-answer {
    padding: 0 15px;
  }
  .page-249-slotph-login__faq-item.active .page-249-slotph-login__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-249-slotph-login__hero-title {
    font-size: 1.8em;
  }
  .page-249-slotph-login__hero-description {
    font-size: 0.9em;
  }
  .page-249-slotph-login__hero-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-249-slotph-login__section-title {
    font-size: 1.5em;
  }
}