
    /* Base Styles */
.page-68win1 {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f7fa;
  padding-bottom: 80px; /* Space for floating buttons */
}

.page-68win1__section-title {
  font-size: 2.2em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.page-68win1__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e74c3c;
  border-radius: 2px;
}

.page-68win1__hero-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 10px; /* Small top padding as per instruction, assuming body has header offset */
}

.page-68win1__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  max-width: 100% !important; /* Mobile responsive */
  height: auto !important; /* Mobile responsive */
}

.page-68win1__hero-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
}

.page-68win1__main-heading {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #f1c40f;
}

.page-68win1__hero-description {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Floating Buttons */
.page-68win1__floating-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  background-color: #2c3e50;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.page-68win1__floating-button {
  display: block;
  width: 45%;
  padding: 12px 0;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
  box-sizing: border-box; /* Ensure padding is included */
}

.page-68win1__floating-button--register {
  background-color: #e74c3c;
}

.page-68win1__floating-button--register:hover {
  background-color: #c0392b;
}

.page-68win1__floating-button--login {
  background-color: #3498db;
}

.page-68win1__floating-button--login:hover {
  background-color: #2980b9;
}

/* Game Categories */
.page-68win1__game-categories {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

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

.page-68win1__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-68win1__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  max-width: 100% !important; /* Mobile responsive */
  height: auto !important; /* Mobile responsive */
}

.page-68win1__category-title {
  font-size: 1.5em;
  color: #e74c3c;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-68win1__category-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 15px;
}

/* Promotion Highlight */
.page-68win1__promotion-highlight {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-68win1__promo-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-68win1__promo-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  max-width: 100% !important; /* Mobile responsive */
  height: auto !important; /* Mobile responsive */
}

.page-68win1__promo-content {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-68win1__promo-title {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-68win1__promo-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-68win1__promo-button {
  display: inline-block;
  background-color: #e74c3c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.page-68win1__promo-button:hover {
  background-color: #c0392b;
}

/* About Us */
.page-68win1__about-us {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background-color: #ecf0f1;
  border-radius: 10px;
}

.page-68win1__about-text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: left;
}

.page-68win1__about-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100% !important; /* Mobile responsive */
  height: auto !important; /* Mobile responsive */
}

/* Providers & Payment Methods */
.page-68win1__providers, .page-68win1__payment-methods {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-68win1__providers-grid, .page-68win1__payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for smaller logos */
  gap: 20px;
  justify-content: center;
}

.page-68win1__provider-item, .page-68win1__payment-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-68win1__provider-item:hover, .page-68win1__payment-item:hover {
  transform: translateY(-3px);
}

.page-68win1__provider-logo, .page-68win1__payment-logo {
  max-width: 150px; /* Adjusted for smaller logos */
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  max-width: 100% !important; /* Mobile responsive */
  height: auto !important; /* Mobile responsive */
}

.page-68win1__provider-name, .page-68win1__payment-name {
  font-size: 0.9em;
  color: #333;
  font-weight: bold;
}

/* FAQ Section */
.page-68win1__faq-section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-68win1__faq-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-68win1__faq-item {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-68win1__faq-item:last-child {
  border-bottom: none;
}

.page-68win1__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

.page-68win1__faq-question:hover {
  background-color: #f0f0f0;
}

.page-68win1__faq-title {
  font-size: 1.2em;
  color: #2c3e50;
  margin: 0;
  flex-grow: 1;
  text-align: left;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-68win1__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #e74c3c;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from blocking click event */
}

.page-68win1__faq-item.active .page-68win1__faq-question {
  background-color: #e74c3c;
  color: #fff;
}

.page-68win1__faq-item.active .page-68win1__faq-title {
  color: #fff;
}

.page-68win1__faq-item.active .page-68win1__faq-toggle {
  transform: rotate(45deg);
  color: #fff;
}

.page-68win1__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;
  background-color: #fff;
}

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

.page-68win1__faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1em;
}

/* Call to Action */
.page-68win1__cta-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-68win1__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-68win1__cta-button {
  display: inline-block;
  background-color: #f1c40f;
  color: #2c3e50;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-68win1__cta-button:hover {
  background-color: #f39c12;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-68win1__main-heading {
    font-size: 2.5em;
  }
  .page-68win1__hero-description {
    font-size: 1.1em;
  }
  .page-68win1__promo-card {
    flex-direction: column;
  }
  .page-68win1__promo-image, .page-68win1__promo-content {
    width: 100%;
  }
  .page-68win1__promo-content {
    padding: 20px;
  }
  .page-68win1__promo-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-68win1__section-title {
    font-size: 1.8em;
  }
  .page-68win1__main-heading {
    font-size: 2em;
  }
  .page-68win1__hero-description {
    font-size: 1em;
  }
  .page-68win1__hero-content {
    padding: 20px;
  }

  .page-68win1__floating-button {
    width: 48%; /* Adjust for small screens */
    padding: 10px 0;
  }

  .page-68win1__categories-grid,
  .page-68win1__providers-grid,
  .page-68win1__payments-grid {
    grid-template-columns: 1fr; /* Single column for all grids */
    gap: 20px;
  }

  .page-68win1__category-item,
  .page-68win1__provider-item,
  .page-68win1__payment-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-68win1__game-categories,
  .page-68win1__promotion-highlight,
  .page-68win1__about-us,
  .page-68win1__providers,
  .page-68win1__payment-methods,
  .page-68win1__faq-section,
  .page-68win1__cta-section {
    padding: 30px 15px;
  }

  .page-68win1__promo-card {
    flex-direction: column;
  }
  .page-68win1__promo-image, .page-68win1__promo-content {
    width: 100%;
  }

  .page-68win1__about-text {
    text-align: justify;
  }

  /* Image responsive for all images */
  .page-68win1__hero-image,
  .page-68win1__category-image,
  .page-68win1__promo-image,
  .page-68win1__about-image,
  .page-68win1__provider-logo,
  .page-68win1__payment-logo {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-68win1__faq-question {
    padding: 15px 20px;
  }
  .page-68win1__faq-title {
    font-size: 1.1em;
  }
  .page-68win1__faq-answer {
    padding: 0 20px;
  }
  .page-68win1__faq-item.active .page-68win1__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-68win1__main-heading {
    font-size: 1.8em;
  }
  .page-68win1__hero-description {
    font-size: 0.9em;
  }
  .page-68win1__floating-button {
    font-size: 0.9em;
  }
  .page-68win1__section-title {
    font-size: 1.6em;
  }
  .page-68win1__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-68win1__promo-title {
    font-size: 1.3em;
  }
  .page-68win1__faq-title {
    font-size: 1em;
  }
}
  