
    /* General styles for the page-188cm-game container */
.page-188cm-game {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 10px; /* Small padding top, assuming body handles --header-offset */
}

.page-188cm-game__section-title {
  font-size: 2.5em;
  color: #ffcc00; /* Gold/yellow for highlights */
  text-align: center;
  margin-bottom: 20px;
  padding: 0 15px;
  word-wrap: break-word; /* Ensure long titles break */
}

.page-188cm-game__section-description {
  font-size: 1.1em;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Keyword highlighting */
.page-188cm-game strong {
  color: #ffcc00;
}
.page-188cm-game__keyword {
  color: #ffcc00;
}

/* Hero Section */
.page-188cm-game__hero-section {
  position: relative;
  height: 60vh; /* Responsive height */
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('[GALLERY:hero:1920x1080:gaming,casino,lights,188cm game]') no-repeat center center/cover;
  padding: 20px;
  box-sizing: border-box;
}

.page-188cm-game__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
}

.page-188cm-game__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-188cm-game__hero-title {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
}

.page-188cm-game__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-188cm-game__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-188cm-game__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-188cm-game__hero-button--primary {
  background-color: #ffcc00;
  color: #1a1a1a;
  border: 2px solid #ffcc00;
}

.page-188cm-game__hero-button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-188cm-game__hero-button--secondary {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-188cm-game__hero-button--secondary:hover {
  background-color: #ffcc00;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Game Categories Section */
.page-188cm-game__game-categories {
  padding: 60px 20px;
  background-color: #222;
}

.page-188cm-game__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-188cm-game__category-item {
  background-color: #2c2c2c;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Ensure padding/border is included in width */
}

.page-188cm-game__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-188cm-game__category-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 3px solid #ffcc00;
  margin-bottom: 15px;
  max-width: 100%; /* Responsive image */
}

.page-188cm-game__category-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 10px;
  padding: 0 15px;
  word-wrap: break-word;
}

.page-188cm-game__category-text {
  font-size: 1em;
  color: #ccc;
  padding: 0 15px;
}

/* Why Choose Us Section */
.page-188cm-game__why-choose-us {
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.page-188cm-game__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-188cm-game__advantage-item {
  background-color: #2c2c2c;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-188cm-game__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%; /* Responsive image */
}

.page-188cm-game__advantage-title {
  font-size: 1.5em;
  color: #ffcc00;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.page-188cm-game__advantage-text {
  font-size: 1em;
  color: #ccc;
}

/* Promotion Banner Section */
.page-188cm-game__promotion-banner {
  padding: 60px 20px;
  background-color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-188cm-game__promotion-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-188cm-game__promotion-title {
  font-size: 2.8em;
  color: #ffcc00;
  margin-bottom: 15px;
  word-wrap: break-word;
}

.page-188cm-game__promotion-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-188cm-game__promotion-button {
  display: inline-block;
  background-color: #ffcc00;
  color: #1a1a1a;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-188cm-game__promotion-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-188cm-game__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-188cm-game__faq-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.page-188cm-game__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-188cm-game__faq-item {
  background-color: #2c2c2c;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.page-188cm-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #3a3a3a;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-188cm-game__faq-question:hover {
  background-color: #3a3a3a;
}

.page-188cm-game__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffcc00;
  pointer-events: none; /* Prevent h3 from blocking click event */
  word-wrap: break-word;
  flex-grow: 1; /* Allow h3 to take available space */
}

.page-188cm-game__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffcc00;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from blocking click event */
}

.page-188cm-game__faq-item.active .page-188cm-game__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or similar, or to '-' */
}

.page-188cm-game__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px; /* Initial padding */
  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;
  box-sizing: border-box;
}

.page-188cm-game__faq-item.active .page-188cm-game__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px !important; /* Expanded padding */
  opacity: 1;
}

.page-188cm-game__faq-answer p {
  margin: 0;
}

/* Floating Buttons */
.page-188cm-game__floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
  width: 90%; /* Adjust width for mobile */
  max-width: 400px; /* Max width for larger screens */
  justify-content: center;
}

.page-188cm-game__floating-button {
  flex: 1; /* Distribute space evenly */
  padding: 12px 10px;
  border-radius: 25px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
}

.page-188cm-game__floating-button--register {
  background-color: #ffcc00;
  color: #1a1a1a;
  border: 2px solid #ffcc00;
}

.page-188cm-game__floating-button--register:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-188cm-game__floating-button--login {
  background-color: #333;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-188cm-game__floating-button--login:hover {
  background-color: #444;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-188cm-game__hero-title {
    font-size: 3em;
  }
  .page-188cm-game__section-title {
    font-size: 2em;
  }
  .page-188cm-game__promotion-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-188cm-game__hero-section {
    height: 50vh;
    min-height: 350px;
  }
  .page-188cm-game__hero-title {
    font-size: 2.2em;
  }
  .page-188cm-game__hero-description {
    font-size: 1em;
  }
  .page-188cm-game__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-188cm-game__hero-button {
    width: 80%; /* Make buttons full width */
    max-width: 250px;
    margin: 0 auto;
  }

  .page-188cm-game__section-title {
    font-size: 1.8em;
  }
  .page-188cm-game__section-description {
    font-size: 0.95em;
  }

  .page-188cm-game__categories-grid,
  .page-188cm-game__advantages-grid {
    grid-template-columns: 1fr; /* Single column layout for mobile */
  }

  /* List item mobile responsiveness */
  .page-188cm-game__category-item,
  .page-188cm-game__advantage-item,
  .page-188cm-game__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 10px !important; /* Adjust padding for smaller screens */
    padding-right: 10px !important;
  }
  .page-188cm-game__category-item .page-188cm-game__category-image,
  .page-188cm-game__advantage-item .page-188cm-game__advantage-icon,
  .page-188cm-game__promotion-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-188cm-game__promotion-title {
    font-size: 1.8em;
  }
  .page-188cm-game__promotion-description {
    font-size: 1em;
  }
  .page-188cm-game__promotion-button {
    width: 90%;
    max-width: 300px;
  }

  .page-188cm-game__faq-question {
    padding: 15px;
  }
  .page-188cm-game__faq-question h3 {
    font-size: 1.1em;
  }
  .page-188cm-game__faq-answer {
    padding: 0 15px;
  }
  .page-188cm-game__faq-item.active .page-188cm-game__faq-answer {
    padding: 15px !important;
  }

  .page-188cm-game__floating-buttons {
    width: calc(100% - 40px); /* Account for some margin */
    gap: 10px;
    bottom: 15px;
  }
  .page-188cm-game__floating-button {
    padding: 10px 8px;
    font-size: 1em;
  }

  /* Ensure text wrap for all elements */
  .page-188cm-game__hero-title,
  .page-188cm-game__hero-description,
  .page-188cm-game__section-title,
  .page-188cm-game__section-description,
  .page-188cm-game__category-title,
  .page-188cm-game__category-text,
  .page-188cm-game__advantage-title,
  .page-188cm-game__advantage-text,
  .page-188cm-game__promotion-title,
  .page-188cm-game__promotion-description,
  .page-188cm-game__faq-question h3,
  .page-188cm-game__faq-answer p,
  .page-188cm-game__floating-button {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important; /* For long keywords */
  }
}

@media (max-width: 480px) {
  .page-188cm-game__hero-title {
    font-size: 1.8em;
  }
  .page-188cm-game__section-title {
    font-size: 1.5em;
  }
  .page-188cm-game__promotion-title {
    font-size: 1.5em;
  }
  .page-188cm-game__hero-section {
    min-height: 300px;
  }
  .page-188cm-game__floating-buttons {
    bottom: 10px;
    gap: 8px;
  }
  .page-188cm-game__floating-button {
    font-size: 0.9em;
    padding: 8px 5px;
  }
}
  