
    /* Base styles for the page */
.page-789link {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a1a;
  line-height: 1.6;
  padding-top: 10px; /* Small padding, assuming body already has header offset */
}

.page-789link__section-title {
  color: #f0b400; /* Gold accent */
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 20px;
  padding: 20px 15px 10px;
  word-wrap: break-word; /* Ensure long titles wrap */
  overflow-wrap: break-word;
}

.page-789link__section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 15px;
  font-size: 1.1em;
  color: #cccccc;
  word-wrap: break-word; /* Ensure long descriptions wrap */
  overflow-wrap: break-word;
}

.page-789link__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;
  white-space: nowrap; /* Prevent button text from wrapping initially */
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
}

.page-789link__button--primary {
  background-color: #f0b400; /* Gold */
  color: #1a1a1a;
  border: 2px solid #f0b400;
}

.page-789link__button--primary:hover {
  background-color: #ffc81a;
  transform: translateY(-2px);
}

.page-789link__button--secondary {
  background-color: #333333;
  color: #f0b400;
  border: 2px solid #f0b400;
}

.page-789link__button--secondary:hover {
  background-color: #444444;
  transform: translateY(-2px);
}

.page-789link__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-789link__button--large {
  padding: 15px 30px;
  font-size: 1.1em;
  width: 100%;
}

.page-789link__button--outline {
  background-color: transparent;
  color: #f0b400;
  border: 2px solid #f0b400;
}

.page-789link__button--outline:hover {
  background-color: #f0b400;
  color: #1a1a1a;
}

/* Hero Section */
.page-789link__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #2a0000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-789link__hero-image-container {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-789link__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-789link__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-789link__hero-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__hero-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}

/* About Section */
.page-789link__about-section {
  padding: 60px 20px;
  background-color: #222222;
}

.page-789link__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-789link__feature-item {
  background-color: #2d2d2d;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-789link__feature-item:hover {
  transform: translateY(-5px);
}

.page-789link__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%;
}

.page-789link__feature-title {
  font-size: 1.6em;
  color: #f0b400;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__feature-text {
  font-size: 1em;
  color: #cccccc;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Games Section */
.page-789link__games-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.page-789link__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 50px;
  justify-content: center;
}

.page-789link__game-card {
  background-color: #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-789link__game-card:hover {
  transform: translateY(-5px);
}

.page-789link__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency, adjust as needed */
  object-fit: cover;
  display: block;
}

.page-789link__game-title {
  font-size: 1.5em;
  color: #f0b400;
  margin: 15px 10px 5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__game-text {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__providers-list {
  text-align: center;
  margin-top: 40px;
  padding: 0 15px;
}

.page-789link__providers-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__provider-items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-789link__provider-item {
  background-color: #3d3d3d;
  color: #e0e0e0;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  white-space: nowrap;
  box-sizing: border-box; /* Ensure padding is included in width */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Promotions Section */
.page-789link__promotions-section {
  padding: 60px 20px;
  background-color: #222222;
}

.page-789link__promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-789link__promo-card {
  background-color: #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-789link__promo-card:hover {
  transform: translateY(-5px);
}

.page-789link__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-789link__promo-title {
  font-size: 1.6em;
  color: #f0b400;
  margin: 20px 15px 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__promo-text {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__promo-action {
  padding-bottom: 20px;
}

/* Why Choose Section */
.page-789link__why-choose-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.page-789link__why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-789link__why-choose-item {
  background-color: #2d2d2d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-789link__why-choose-title {
  font-size: 1.6em;
  color: #f0b400;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__why-choose-text {
  font-size: 1em;
  color: #cccccc;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* FAQ Section */
.page-789link__faq-section {
  padding: 60px 20px;
  background-color: #222222;
}

.page-789link__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-789link__faq-item {
  background-color: #2d2d2d;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-789link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #3a3a3a;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: bold;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-789link__faq-question:hover {
  background-color: #4a4a4a;
}

.page-789link__faq-title {
  margin: 0;
  font-size: 1.1em;
  color: #ffffff;
  pointer-events: none; /* Crucial for click event on parent */
  flex-grow: 1;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-789link__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  pointer-events: none; /* Crucial for click event on parent */
  transition: transform 0.3s ease;
}

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

.page-789link__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: #cccccc;
}

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

.page-789link__faq-answer p {
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* CTA Section */
.page-789link__cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
  text-align: center;
}

.page-789link__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 40px auto 0;
}

/* Floating Buttons */
.page-789link__floating-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  box-sizing: border-box;
}

.page-789link__floating-button {
  flex: 1;
  margin: 0 5px;
  padding: 12px 10px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.page-789link__floating-button--register {
  background-color: #f0b400; /* Gold */
  color: #1a1a1a;
  border: 2px solid #f0b400;
}

.page-789link__floating-button--register:hover {
  background-color: #ffc81a;
  transform: translateY(-2px);
}

.page-789link__floating-button--login {
  background-color: #333333;
  color: #f0b400;
  border: 2px solid #f0b400;
}

.page-789link__floating-button--login:hover {
  background-color: #444444;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-789link__hero-section {
    flex-direction: row;
    padding: 80px 40px;
    text-align: left;
    gap: 40px;
  }

  .page-789link__hero-content {
    flex: 1;
    max-width: 50%;
  }

  .page-789link__hero-image-container {
    flex: 1;
    margin-top: 0;
    max-width: 50%;
  }

  .page-789link__hero-title {
    font-size: 3.5em;
  }

  .page-789link__hero-description {
    font-size: 1.3em;
  }

  .page-789link__hero-actions {
    flex-direction: row;
    max-width: none;
    margin: 0;
    justify-content: flex-start;
  }

  .page-789link__button--large {
    width: auto;
  }

  .page-789link__features-grid,
  .page-789link__promo-grid,
  .page-789link__why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-789link__games-section .page-789link__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-789link__section-title {
    font-size: 2.8em;
  }

  .page-789link__floating-buttons {
    justify-content: flex-end; /* Align to right on desktop */
    width: auto;
    right: 20px;
    left: auto;
    bottom: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    gap: 15px;
    max-width: 350px;
  }

  .page-789link__floating-button {
    flex: none;
    width: 150px;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .page-789link__features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-789link__promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-789link__why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-789link__hero-title {
    font-size: 4em;
  }
}

/* Ensure all list items are responsive on mobile */
@media (max-width: 768px) {
  .page-789link__provider-items {
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-789link__provider-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 10px 15px !important; /* Adjust padding for mobile */
    text-align: center;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Image responsiveness for all images */
  .page-789link img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-789link__hero-image-container,
  .page-789link__game-card,
  .page-789link__promo-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .page-789link__game-image,
  .page-789link__promo-image {
    height: auto !important; /* Allow height to adjust naturally */
    min-height: 200px; /* Ensure minimum height */
  }

  .page-789link__hero-title {
    font-size: 2.2em;
  }

  .page-789link__hero-description {
    font-size: 1em;
  }

  .page-789link__section-title {
    font-size: 1.8em;
  }

  .page-789link__floating-buttons {
    padding: 8px 10px;
  }

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