
    /* General styles for the 88day page */
.page-88day {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
  padding-top: 10px; /* Small padding top for visual separation from header, assuming body handles main offset */
}

.page-88day__section-title {
  font-size: 2.5em;
  color: #e94560; /* Accent color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  text-transform: uppercase;
}

.page-88day__section-description {
  font-size: 1.1em;
  color: #b0b0b0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  padding: 0 15px;
}

/* Hero Section */
.page-88day__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden; /* Ensure image doesn't overflow rounded corners */
}

.page-88day__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-88day__hero-title {
  font-size: 3.5em;
  color: #e94560;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-88day__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-88day__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}

.page-88day__cta-button {
  display: inline-block;
  background-color: #e94560;
  color: #ffffff;
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none; /* Ensure it looks like a button */
  cursor: pointer; /* Indicate it's clickable */
}

.page-88day__cta-button:hover {
  background-color: #ff6a80;
  transform: translateY(-3px);
}

.page-88day__cta-button--secondary {
  background-color: #0f3460;
  border: 2px solid #e94560;
}

.page-88day__cta-button--secondary:hover {
  background-color: #1a4f8a;
  border-color: #ff6a80;
}

.page-88day__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for the image */
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-88day__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Games Section */
.page-88day__games-section,
.page-88day__promotions-section,
.page-88day__about-section,
.page-88day__faq-section,
.page-88day__payment-section,
.page-88day__providers-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-88day__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-88day__game-card {
  background-color: #272740;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box; /* Crucial for responsive width */
}

.page-88day__game-card:hover {
  transform: translateY(-10px);
  background-color: #3f3f60;
}

.page-88day__game-card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 150px; /* Ensure minimum size */
}

.page-88day__game-card-title {
  font-size: 1.8em;
  color: #e94560;
  margin-bottom: 10px;
}

.page-88day__game-card-text {
  font-size: 1em;
  color: #c0c0c0;
  flex-grow: 1; /* Allow text to take available space */
}

/* Promotions Section */
.page-88day__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-88day__promotion-card {
  background-color: #272740;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive width */
}

.page-88day__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-88day__promotion-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Ensure minimum size */
  min-height: 150px; /* Ensure minimum size */
}

.page-88day__promotion-title {
  font-size: 1.6em;
  color: #e94560;
  padding: 15px 20px 10px;
}

.page-88day__promotion-text {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px 20px;
}

.page-88day__view-all-promotions {
  text-align: center;
  margin-top: 40px;
}

/* About Section */
.page-88day__about-section {
  background-color: #0f3460; /* Slightly different dark background */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-88day__about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.page-88day__about-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
  color: #c0c0c0;
}

.page-88day__about-text p {
  margin-bottom: 15px;
}

.page-88day__about-image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-88day__about-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 150px;
}

/* FAQ Section */
.page-88day__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-88day__faq-item {
  background-color: #272740;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-88day__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #3f3f60;
  border-bottom: 1px solid #4a4a70;
  transition: background-color 0.3s ease;
}

.page-88day__faq-question:hover {
  background-color: #5a5a80;
}

.page-88day__faq-title {
  font-size: 1.2em;
  color: #e0e0e0;
  margin: 0;
  pointer-events: none; /* Prevent title from blocking click event */
}

.page-88day__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #e94560;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from blocking click event */
}

.page-88day__faq-item.active .page-88day__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-88day__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #c0c0c0;
}

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

.page-88day__faq-answer p {
  margin: 0;
}

/* Payment Methods Section */
.page-88day__payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-88day__payment-logo-link {
  display: block;
  background-color: #272740;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px; /* Adjusted to meet minimum width */
  height: 100px; /* Adjusted to meet minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.page-88day__payment-logo-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-88day__payment-logo {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

/* Providers Section */
.page-88day__providers-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-88day__provider-logo-link {
  display: block;
  background-color: #272740;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px; /* Adjusted to meet minimum width */
  height: 100px; /* Adjusted to meet minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.page-88day__provider-logo-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-88day__provider-logo {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

/* Floating Register/Login Buttons */
.page-88day__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-88day__floating-button {
  background-color: #e94560;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-88day__floating-button:hover {
  background-color: #ff6a80;
  transform: translateY(-3px);
}

.page-88day__floating-button--login {
  background-color: #0f3460;
  border: 2px solid #e94560;
}

.page-88day__floating-button--login:hover {
  background-color: #1a4f8a;
  border-color: #ff6a80;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-88day__hero-title {
    font-size: 3em;
  }
  .page-88day__hero-description {
    font-size: 1.2em;
  }
  .page-88day__section-title {
    font-size: 2em;
  }
  .page-88day__about-content {
    flex-direction: column;
    text-align: center;
  }
  .page-88day__about-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-88day__hero-section {
    padding: 40px 15px;
    flex-direction: column;
  }
  .page-88day__hero-title {
    font-size: 2.5em;
  }
  .page-88day__hero-description {
    font-size: 1.1em;
  }
  .page-88day__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-88day__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-88day__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-88day__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-88day__games-section,
  .page-88day__promotions-section,
  .page-88day__about-section,
  .page-88day__faq-section,
  .page-88day__payment-section,
  .page-88day__providers-section {
    padding: 40px 15px;
  }

  /* List item responsive requirements */
  .page-88day__game-categories,
  .page-88day__promotion-grid,
  .page-88day__payment-methods,
  .page-88day__providers-logos {
    display: flex; /* Change to flex for better control on mobile */
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adjust gap */
  }

  .page-88day__game-card,
  .page-88day__promotion-card {
    width: 100% !important;
    max-width: 350px !important; /* Constrain max width for cards */
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 15px !important; /* Adjust padding */
  }

  .page-88day__payment-logo-link,
  .page-88day__provider-logo-link {
    width: 100% !important;
    max-width: 250px !important; /* Allow them to shrink but still be reasonable */
    height: auto !important; /* Allow height to adjust proportionally */
    min-height: 80px !important; /* Ensure a minimum height for visibility */
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px !important; /* Adjust padding for smaller buttons */
  }

  .page-88day__game-card-image,
  .page-88day__promotion-image,
  .page-88day__payment-logo,
  .page-88day__provider-logo {
    max-width: 100% !important;
    height: auto !important;
    min-width: unset !important; /* Remove min-width for mobile images */
    min-height: unset !important; /* Remove min-height for mobile images */
    object-fit: contain !important; /* Ensure logos fit well */
  }

  .page-88day__promotion-image {
    height: 150px !important; /* Adjust height for promo images */
  }

  .page-88day__faq-question {
    padding: 15px 20px;
  }
  .page-88day__faq-title {
    font-size: 1.1em;
  }
  .page-88day__faq-answer {
    padding: 0 20px;
  }
  .page-88day__faq-item.active .page-88day__faq-answer {
    padding: 15px 20px !important;
  }
  .page-88day__floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
  .page-88day__floating-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-88day__hero-title {
    font-size: 2em;
  }
  .page-88day__hero-description {
    font-size: 1em;
  }
  .page-88day__section-title {
    font-size: 1.6em;
  }
  .page-88day__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-88day__game-card-title {
    font-size: 1.5em;
  }
  .page-88day__promotion-title {
    font-size: 1.4em;
  }
}

/* Ensure text wrapping for all elements */
.page-88day * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.page-88day__game-card-text,
.page-88day__promotion-text,
.page-88day__about-text p,
.page-88day__faq-answer p {
  word-break: break-word;
}
  