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

.page-oa999__section-title {
  font-size: 2.5em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
}

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

.page-oa999__brand-highlight {
  color: #e74c3c; /* A striking red color */
}

.page-oa999__keyword-highlight {
  color: #e74c3c;
  font-weight: bold;
}

.page-oa999__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  border: none;
}

.page-oa999__button--primary {
  background-color: #e74c3c; /* Red */
  color: white;
}

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

.page-oa999__button--secondary {
  background-color: #34495e; /* Dark Blue/Grey */
  color: white;
  margin-left: 15px;
}

.page-oa999__button--secondary:hover {
  background-color: #2c3e50;
  transform: translateY(-2px);
}

.page-oa999__button--promo {
  margin-top: 20px;
  background-color: #27ae60; /* Green */
  color: white;
}

.page-oa999__button--promo:hover {
  background-color: #229954;
}

.page-oa999__button--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

/* Hero Section */
.page-oa999__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height for mobile first */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding-top: 10px; /* Small decorative padding, body handles main offset */
  box-sizing: border-box;
}

.page-oa999__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-oa999__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: -1;
}

.page-oa999__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-oa999__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.page-oa999__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Floating Buttons */
.page-oa999__floating-buttons-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  box-sizing: border-box;
}

.page-oa999__floating-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.page-oa999__button--register,
.page-oa999__button--login {
  flex: 1;
  background-color: #e74c3c;
  color: white;
  border-radius: 5px;
  font-size: 1.1em;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-oa999__button--register:hover,
.page-oa999__button--login:hover {
  background-color: #c0392b;
}

/* Features Section */
.page-oa999__features-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

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

.page-oa999__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-oa999__feature-item:hover {
  transform: translateY(-10px);
}

.page-oa999__feature-icon {
  width: 100%; /* Ensure image is responsive */
  max-width: 250px; /* Max width for feature icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-oa999__feature-title {
  font-size: 1.6em;
  color: #e74c3c;
  margin-bottom: 15px;
}

.page-oa999__feature-description {
  font-size: 1em;
  color: #666;
}

/* Games Section */
.page-oa999__games-section {
  padding: 60px 20px;
  background-color: #f5f7fa;
  text-align: center;
}

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

.page-oa999__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-oa999__game-card:hover {
  transform: translateY(-10px);
}

.page-oa999__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  box-sizing: border-box;
}

.page-oa999__game-title {
  font-size: 1.5em;
  color: #e74c3c;
  padding: 15px 10px 5px;
}

.page-oa999__game-description {
  font-size: 0.95em;
  color: #777;
  padding: 0 15px 20px;
}

/* Promotion Section */
.page-oa999__promo-section {
  padding: 60px 20px;
  background-color: #e74c3c;
  color: white;
  text-align: center;
}

.page-oa999__promo-content {
  display: flex;
  flex-direction: column; /* Stack on mobile */
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.page-oa999__promo-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.page-oa999__promo-text {
  text-align: center;
}

.page-oa999__promo-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: white;
}

.page-oa999__promo-description {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Partners Section */
.page-oa999__partners-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.page-oa999__partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-oa999__partner-category {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.page-oa999__partner-title {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 20px;
}

.page-oa999__partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-oa999__partner-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  box-sizing: border-box; /* Crucial for list item responsiveness */
  width: 100%; /* Ensure it takes full width in its container */
}

.page-oa999__partner-link {
  color: #e74c3c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-oa999__partner-link:hover {
  color: #c0392b;
  text-decoration: underline;
}

/* FAQ Section */
.page-oa999__faq-section {
  padding: 60px 20px;
  background-color: #f5f7fa;
}

.page-oa999__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-oa999__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-oa999__faq-question-title {
  font-size: 1.2em;
  color: #333;
  margin: 0;
  pointer-events: none; /* Prevent title from blocking click event */
}

.page-oa999__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #e74c3c;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle icon from blocking click event */
}

.page-oa999__faq-item.active .page-oa999__faq-toggle {
  transform: rotate(45deg);
}

.page-oa999__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: #555;
  box-sizing: border-box;
}

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

.page-oa999__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Call to Action Section */
.page-oa999__cta-section {
  padding: 60px 20px;
  background-color: #34495e;
  color: white;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-oa999__hero-section {
    height: 450px;
  }

  .page-oa999__hero-title {
    font-size: 2em;
  }

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

  .page-oa999__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-oa999__button--secondary {
    margin-left: 0;
  }

  .page-oa999__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-oa999__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-oa999__features-grid,
  .page-oa999__games-grid,
  .page-oa999__partner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-oa999__feature-item,
  .page-oa999__game-card,
  .page-oa999__partner-category {
    padding: 20px;
  }

  .page-oa999__promo-content {
    flex-direction: column;
  }

  .page-oa999__promo-title {
    font-size: 1.5em;
  }

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

  /* List item specific responsiveness */
  .page-oa999__partner-list {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page-oa999__partner-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-oa999__faq-question {
    padding: 15px;
  }

  .page-oa999__faq-question-title {
    font-size: 1.1em;
  }

  .page-oa999__faq-answer {
    padding: 0 15px;
  }

  .page-oa999__faq-item.active .page-oa999__faq-answer {
    padding: 15px !important;
  }

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

  .page-oa999__button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-oa999__floating-buttons {
    padding: 0 15px;
  }
}

@media (min-width: 769px) {
  .page-oa999__promo-content {
    flex-direction: row; /* Row on desktop */
    text-align: left;
  }

  .page-oa999__promo-image {
    flex-shrink: 0;
  }

  .page-oa999__promo-text {
    text-align: left;
  }
}
  