
    /* General page styles */
.page-68bes {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a1a;
  line-height: 1.6;
  padding-top: 10px; /* Small padding for hero/first section, assuming body handles header offset */
}

.page-68bes__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-68bes__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  text-transform: uppercase;
  font-weight: bold;
}

.page-68bes__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-68bes__highlight {
  color: #FFD700; /* Gold accent for keywords */
}

/* Hero Section */
.page-68bes__hero-section {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust for mobile/desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-color: #000;
  min-height: 450px; /* Minimum height for hero */
}

.page-68bes__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-68bes__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-68bes__hero-content {
  position: relative;
  z-index: 3;
  color: #f0f0f0;
  max-width: 900px;
  padding: 20px;
}

.page-68bes__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-68bes__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-68bes__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-68bes__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-68bes__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a;
}

.page-68bes__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-68bes__button--secondary {
  background-color: #00BFFF; /* Deep sky blue */
  color: #fff;
}

.page-68bes__button--secondary:hover {
  background-color: #009acd;
  transform: translateY(-3px);
}

/* Floating Register/Login Buttons */
.page-68bes__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-68bes__floating-button {
  display: block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.page-68bes__floating-button--register {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a;
}

.page-68bes__floating-button--register:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-68bes__floating-button--login {
  background-color: #00BFFF; /* Deep sky blue */
  color: #fff;
}

.page-68bes__floating-button--login:hover {
  background-color: #009acd;
  transform: translateY(-2px);
}

/* Product Showcase */
.page-68bes__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-68bes__game-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure cards in a row have similar height */
}

.page-68bes__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-68bes__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #FFD700;
}

.page-68bes__game-card-title {
  font-size: 1.5em;
  color: #FFD700;
  padding: 15px 20px 10px;
  margin: 0;
}

.page-68bes__game-card-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1; /* Make description fill available space */
}

/* Why Choose Us Section */
.page-68bes__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-68bes__benefit-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-68bes__benefit-item:hover {
  transform: translateY(-8px);
  background-color: #3a3a3a;
}

.page-68bes__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 10px;
}

.page-68bes__benefit-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-68bes__benefit-description {
  font-size: 0.95em;
  color: #cccccc;
}

/* Payment Methods and Game Providers */
.page-68bes__logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-68bes__logo-item {
  background-color: #2a2a2a;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none; /* Remove underline for links */
}

.page-68bes__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-68bes__logo-image {
  max-width: 100%;
  height: auto;
  max-height: 60px; /* Limit height of logos */
  object-fit: contain;
}

/* FAQ Section */
.page-68bes__faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-68bes__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-68bes__faq-question:hover {
  background-color: #4a4a4a;
}

.page-68bes__faq-question-title {
  font-size: 1.25em;
  color: #f0f0f0;
  margin: 0;
  pointer-events: none; /* Prevent h3 from interfering with click event */
}

.page-68bes__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from interfering with click event */
}

.page-68bes__faq-item.active .page-68bes__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
  color: #00BFFF;
}

.page-68bes__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-68bes__faq-item.active .page-68bes__faq-answer {
  max-height: 2000px !important; /* Sufficiently large value */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-68bes__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-68bes__hero-title {
    font-size: 3em;
  }
  .page-68bes__hero-description {
    font-size: 1.2em;
  }
  .page-68bes__section-title {
    font-size: 2em;
  }
  .page-68bes__game-grid,
  .page-68bes__benefits-grid,
  .page-68bes__logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-68bes__hero-section {
    height: 60vh;
    min-height: 400px;
  }
  .page-68bes__hero-title {
    font-size: 2.2em;
  }
  .page-68bes__hero-description {
    font-size: 1em;
  }
  .page-68bes__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-68bes__button {
    width: 80%;
    margin: 0 auto;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-68bes__section {
    padding: 30px 15px;
  }
  .page-68bes__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-68bes__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-68bes__game-grid,
  .page-68bes__benefits-grid,
  .page-68bes__logo-grid {
    grid-template-columns: 1fr; /* Single column for lists/grids */
    gap: 20px;
  }

  /* List item responsive requirements */
  .page-68bes__game-card,
  .page-68bes__benefit-item,
  .page-68bes__logo-item,
  .page-68bes__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-68bes__game-card-description,
  .page-68bes__benefit-description,
  .page-68bes__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-68bes__game-card-title,
  .page-68bes__benefit-title {
    font-size: 1.3em;
  }

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

  .page-68bes__floating-buttons {
    flex-direction: row;
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    justify-content: space-around;
  }
  .page-68bes__floating-button {
    flex: 1;
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .page-68bes__hero-title {
    font-size: 1.8em;
  }
  .page-68bes__hero-description {
    font-size: 0.9em;
  }
  .page-68bes__button {
    width: 90%;
  }
  .page-68bes__floating-button {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-68bes__game-card-title {
    font-size: 1.2em;
  }
  .page-68bes__benefit-title {
    font-size: 1.2em;
  }
  .page-68bes__benefit-icon {
    width: 80px;
    height: 80px;
  }
  .page-68bes__faq-question-title {
    font-size: 1em;
  }
  .page-68bes__faq-toggle {
    font-size: 1.3em;
  }
}
  