
    /* Base styles for page-88cld */
.page-88cld {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 10px; /* Small top padding as per requirement, assuming body handles header offset */
}

/* Section styling */
.page-88cld__hero-section,
.page-88cld__game-categories,
.page-88cld__promotions-section,
.page-88cld__about-section,
.page-88cld__news-section,
.page-88cld__faq-section,
.page-88cld__cta-section {
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-88cld__section-title {
  font-size: 2.2em;
  color: #e94560; /* Accent color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-88cld__section-description {
  font-size: 1.1em;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-88cld__hero-section {
  background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('[GALLERY:hero:1920x1080:gaming,casino,lights,88cld]') no-repeat center center;
  background-size: cover;
  padding: 80px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-88cld__hero-content {
  max-width: 800px;
}

.page-88cld__main-title {
  font-size: 2.8em;
  color: #f0f0f0;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-88cld__hero-description {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 30px;
}

.page-88cld__hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* Buttons */
.page-88cld__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included */
  width: 100%; /* Full width on mobile */
  max-width: 250px; /* Limit max width */
}

.page-88cld__button--primary {
  background-color: #e94560;
  color: #fff;
  border: 2px solid #e94560;
}

.page-88cld__button--primary:hover {
  background-color: #d6304f;
  transform: translateY(-2px);
}

.page-88cld__button--secondary {
  background-color: transparent;
  color: #e94560;
  border: 2px solid #e94560;
}

.page-88cld__button--secondary:hover {
  background-color: #e94560;
  color: #fff;
  transform: translateY(-2px);
}

.page-88cld__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  width: auto; /* Override for small buttons */
  max-width: none;
}

.page-88cld__button--large {
  padding: 15px 30px;
  font-size: 1.1em;
  max-width: 300px;
}

.page-88cld__button--text-only {
  background: none;
  border: none;
  color: #e94560;
  padding: 5px 10px;
  font-size: 0.95em;
  cursor: pointer;
  text-decoration: underline;
  width: auto;
  max-width: none;
}

.page-88cld__button--text-only:hover {
  color: #d6304f;
  transform: none;
}

/* Game Categories */
.page-88cld__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.page-88cld__category-item {
  background-color: #2b2b45;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-88cld__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-88cld__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #e94560;
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
  box-sizing: border-box; /* For image container */
}

.page-88cld__category-title {
  font-size: 1.5em;
  color: #f0f0f0;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-88cld__category-text {
  font-size: 0.95em;
  color: #ccc;
  padding: 0 15px;
}

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

.page-88cld__promo-item {
  background-color: #2b2b45;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-88cld__promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-88cld__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #e94560;
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
  box-sizing: border-box; /* For image container */
}

.page-88cld__promo-title {
  font-size: 1.4em;
  color: #f0f0f0;
  margin: 20px 15px 10px;
}

.page-88cld__promo-text {
  font-size: 0.95em;
  color: #ccc;
  margin: 0 15px 20px;
  flex-grow: 1; /* Pushes button to bottom */
}

.page-88cld__promo-item .page-88cld__button {
  align-self: flex-start; /* Align button to start */
  margin: 0 15px 20px;
  width: auto;
  max-width: 150px;
}

/* About Section */
.page-88cld__about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-88cld__about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
  box-sizing: border-box; /* For image container */
}

.page-88cld__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.page-88cld__feature-item {
  background-color: #2b2b45;
  border-left: 5px solid #e94560;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box; /* Crucial for list items */
  width: 100%; /* Ensure full width on mobile */
  max-width: 100%;
}

.page-88cld__feature-title {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-88cld__feature-description {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 0;
}

/* News Section */
.page-88cld__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.page-88cld__news-item {
  background-color: #2b2b45;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-88cld__news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-88cld__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #e94560;
  max-width: 100%; /* Responsive image */
  height: auto; /* Responsive image */
  box-sizing: border-box; /* For image container */
}

.page-88cld__news-title {
  font-size: 1.4em;
  color: #f0f0f0;
  margin: 20px 15px 10px;
}

.page-88cld__news-date {
  font-size: 0.85em;
  color: #888;
  margin: 0 15px 10px;
}

.page-88cld__news-excerpt {
  font-size: 0.95em;
  color: #ccc;
  margin: 0 15px 20px;
  flex-grow: 1;
}

.page-88cld__news-item .page-88cld__button {
  align-self: flex-start;
  margin: 0 15px 20px;
}

/* FAQ Section */
.page-88cld__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-88cld__faq-item {
  background-color: #2b2b45;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box; /* Crucial for list items */
  width: 100%; /* Ensure full width on mobile */
  max-width: 100%;
}

.page-88cld__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  background-color: #3a3a5a;
  color: #f0f0f0;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-88cld__faq-question:hover {
  background-color: #4a4a6a;
}

.page-88cld__faq-question-text {
  margin: 0;
  font-size: 1.1em;
  pointer-events: none; /* Prevent text from blocking click */
}

.page-88cld__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from blocking click */
}

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

.page-88cld__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #ccc;
  font-size: 0.95em;
}

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

/* Call to Action Section */
.page-88cld__cta-section {
  text-align: center;
  background-color: #2b2b45;
  border-radius: 12px;
  padding: 50px 20px;
  margin-bottom: 40px;
}

.page-88cld__cta-description {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 30px;
}

/* Floating Buttons */
.page-88cld__floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
  width: calc(100% - 30px); /* Adjust for padding on small screens */
  max-width: 340px; /* Limit max width */
}

.page-88cld__floating-button {
  flex: 1;
  padding: 12px 10px;
  border-radius: 50px; /* Pill shape */
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-88cld__floating-button--register {
  background-color: #e94560;
  color: #fff;
}

.page-88cld__floating-button--register:hover {
  background-color: #d6304f;
  transform: translateY(-2px);
}

.page-88cld__floating-button--login {
  background-color: #3f51b5; /* A different accent color for login */
  color: #fff;
}

.page-88cld__floating-button--login:hover {
  background-color: #303f9f;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-88cld__section-title {
    font-size: 1.8em;
  }

  .page-88cld__main-title {
    font-size: 2em;
  }

  .page-88cld__hero-description {
    font-size: 1em;
  }

  .page-88cld__hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .page-88cld__button {
    width: 90%; /* More width for buttons on mobile */
    max-width: 300px;
    margin: 0 auto;
  }

  .page-88cld__about-content {
    flex-direction: column;
  }

  .page-88cld__about-image {
    margin-bottom: 20px;
  }

  /* List item mobile responsiveness */
  .page-88cld__feature-list,
  .page-88cld__game-categories,
  .page-88cld__promo-grid,
  .page-88cld__news-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important; /* Adjust padding for containers */
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    grid-template-columns: 1fr; /* Single column for grids */
  }

  .page-88cld__feature-item,
  .page-88cld__category-item,
  .page-88cld__promo-item,
  .page-88cld__news-item,
  .page-88cld__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important; /* Ensure text wraps */
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-88cld__feature-item p,
  .page-88cld__category-item p,
  .page-88cld__promo-item p,
  .page-88cld__news-item p,
  .page-88cld__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-88cld__category-image,
  .page-88cld__promo-image,
  .page-88cld__news-image,
  .page-88cld__about-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-88cld__floating-buttons {
    width: calc(100% - 30px); /* Maintain some side margin */
    bottom: 15px;
    gap: 10px;
  }

  .page-88cld__floating-button {
    font-size: 1em;
    padding: 10px 8px;
  }
}

@media (min-width: 769px) {
  .page-88cld__hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .page-88cld__button {
    width: auto;
    max-width: 200px; /* Adjust max-width for desktop buttons */
  }

  .page-88cld__about-content {
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
  }

  .page-88cld__about-image {
    flex: 1;
    max-width: 45%;
  }

  .page-88cld__feature-list {
    flex: 1;
    max-width: 50%;
  }
}
  