
    /* Base styles for the page-79-wim scope */
.page-79-wim {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f0f2f5; /* Light background for the page */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Section general styles */
.page-79-wim__section-title {
  font-size: 2.2em;
  color: #0a4d68; /* Dark blue for titles */
  text-align: center;
  margin-bottom: 20px;
  padding: 0 15px;
  font-weight: bold;
}

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

/* Buttons */
.page-79-wim__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.page-79-wim__button--primary {
  background-color: #e44d26; /* Orange-red */
  color: #fff;
  border: 2px solid #e44d26;
}

.page-79-wim__button--primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.page-79-wim__button--secondary {
  background-color: transparent;
  color: #e44d26;
  border: 2px solid #e44d26;
}

.page-79-wim__button--secondary:hover {
  background-color: #e44d26;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.page-79-wim__hero-section {
  background: linear-gradient(135deg, #0a4d68 0%, #187795 100%); /* Blue gradient */
  color: #fff;
  padding: 10px 20px 40px; /* Rely on body padding-top for header offset, add small decorative top padding */
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .page-79-wim__hero-section {
    padding-top: 10px; /* Small decorative padding on mobile too */
  }
}

.page-79-wim__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-79-wim__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffcc00; /* Gold for emphasis */
}

.page-79-wim__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-79-wim__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px; /* Centered product display */
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-79-wim__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating Buttons */
.page-79-wim__floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
}

.page-79-wim__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 120px;
}

.page-79-wim__floating-button--register {
  background-color: #28a745; /* Green */
}

.page-79-wim__floating-button--register:hover {
  background-color: #218838;
  transform: translateY(-3px);
}

.page-79-wim__floating-button--login {
  background-color: #007bff; /* Blue */
}

.page-79-wim__floating-button--login:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .page-79-wim__floating-buttons {
    bottom: 15px;
    gap: 10px;
  }
  .page-79-wim__floating-button {
    padding: 10px 20px;
    font-size: 1em;
    min-width: 100px;
  }
}

/* Game Categories Section */
.page-79-wim__game-categories,
.page-79-wim__promotions-section,
.page-79-wim__about-us,
.page-79-wim__payment-providers,
.page-79-wim__news-section,
.page-79-wim__faq-section {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-79-wim__category-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.page-79-wim__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-79-wim__category-title {
  font-size: 1.6em;
  color: #0a4d68;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-79-wim__category-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
}

/* Promotions Section */
.page-79-wim__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.page-79-wim__promo-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.page-79-wim__promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-79-wim__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-79-wim__promo-title {
  font-size: 1.5em;
  color: #e44d26; /* Orange-red for promo titles */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-79-wim__promo-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
}

.page-79-wim__promo-action {
  text-align: center;
}

/* About Us Section */
.page-79-wim__about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.page-79-wim__about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-79-wim__about-text {
  font-size: 1.1em;
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

.page-79-wim__about-text p {
  margin-bottom: 15px;
}

@media (min-width: 769px) {
  .page-79-wim__about-content {
    flex-direction: row;
    text-align: left;
  }
  .page-79-wim__about-image {
    flex: 0 0 40%;
  }
  .page-79-wim__about-text {
    flex: 1;
  }
}

/* Payment & Providers Section */
.page-79-wim__partner-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-79-wim__partner-category {
  text-align: center;
}

.page-79-wim__partner-subtitle {
  font-size: 1.8em;
  color: #0a4d68;
  margin-bottom: 25px;
}

.page-79-wim__partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.page-79-wim__partner-logo-link {
  display: block;
  transition: transform 0.2s ease;
}

.page-79-wim__partner-logo-link:hover {
  transform: translateY(-5px);
}

.page-79-wim__partner-logo {
  width: 150px; /* Adjust size for logos, ensuring min 200x200 */
  height: auto;
  max-height: 100px; /* Constrain height */
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fefefe;
  padding: 10px;
  box-sizing: border-box;
  min-width: 200px; /* Enforce minimum size */
  min-height: 100px; /* Enforce minimum size */
}

/* News Section */
.page-79-wim__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.page-79-wim__news-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.page-79-wim__news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-79-wim__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-79-wim__news-title {
  font-size: 1.4em;
  color: #0a4d68;
  margin-bottom: 8px;
  padding: 0 15px;
}

.page-79-wim__news-date {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-79-wim__news-excerpt {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px;
}

.page-79-wim__news-action {
  text-align: center;
}

/* FAQ Section */
.page-79-wim__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-79-wim__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #0a4d68; /* Dark blue background for question */
  color: #fff;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-79-wim__faq-question:hover {
  background-color: #187795; /* Slightly lighter blue on hover */
}

.page-79-wim__faq-q-text {
  margin: 0;
  font-size: 1.2em;
  color: #ffcc00; /* Gold for question text */
  pointer-events: none; /* Prevent text from blocking click event */
  flex-grow: 1;
}

.page-79-wim__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  width: 30px;
  text-align: center;
  pointer-events: none; /* Prevent toggle icon from blocking click event */
  transition: transform 0.3s ease;
}

.page-79-wim__faq-item.active .page-79-wim__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-79-wim__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;
  background-color: #f9f9f9;
  color: #444;
}

.page-79-wim__faq-item.active .page-79-wim__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to show all content */
  padding: 20px !important;
  opacity: 1;
}

.page-79-wim__faq-answer p {
  margin-bottom: 10px;
}
.page-79-wim__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-79-wim__section-title {
    font-size: 1.8em;
  }
  .page-79-wim__section-description {
    font-size: 1em;
  }
  .page-79-wim__hero-title {
    font-size: 2.2em;
  }
  .page-79-wim__hero-description {
    font-size: 1.1em;
  }
  .page-79-wim__game-categories,
  .page-79-wim__promotions-section,
  .page-79-wim__about-us,
  .page-79-wim__payment-providers,
  .page-79-wim__news-section,
  .page-79-wim__faq-section {
    padding: 40px 15px;
  }

  /* List items responsiveness */
  .page-79-wim__categories-grid,
  .page-79-wim__promo-grid,
  .page-79-wim__news-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }

  .page-79-wim__category-item,
  .page-79-wim__promo-item,
  .page-79-wim__news-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-79-wim__partner-logos {
    flex-direction: column;
    align-items: center;
  }

  .page-79-wim__partner-logo {
    width: 100% !important;
    max-width: 250px !important; /* Limit max width for logos on small screens */
    height: auto !important;
    min-height: 100px !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-79-wim__faq-question {
    padding: 12px 15px;
  }
  .page-79-wim__faq-q-text {
    font-size: 1.1em;
  }
  .page-79-wim__faq-answer {
    padding: 15px !important;
  }
  .page-79-wim__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 480px) {
  .page-79-wim__hero-title {
    font-size: 1.8em;
  }
  .page-79-wim__hero-description {
    font-size: 1em;
  }
  .page-79-wim__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}
  