
    .page-66ae {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-66ae__header-brand {
      text-align: center;
      padding: 10px 0;
      background-color: #2a2a2a;
      color: #fff;
      font-size: 2.5em;
      font-weight: bold;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-66ae__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body padding handles header offset */
    }

    .page-66ae__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.7);
    }

    .page-66ae__hero-content {
      z-index: 1;
      max-width: 90%;
    }

    .page-66ae__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffd700; /* Gold color for brand */
    }

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

    .page-66ae__cta-button {
      background-color: #ff4500;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
    }

    .page-66ae__cta-button:hover {
      background-color: #e03c00;
    }

    .page-66ae__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-66ae__section-title {
      font-size: 2.2em;
      color: #2a2a2a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-66ae__text-content {
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-66ae__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-items: center;
    }

    .page-66ae__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 350px;
      box-sizing: border-box;
    }

    .page-66ae__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-66ae__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-66ae__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-66ae__game-info {
      padding: 20px;
      text-align: center;
    }

    .page-66ae__game-title {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-66ae__game-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-66ae__promo-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-66ae__promo-item {
      background-color: #fefae0;
      border-left: 5px solid #ff4500;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-66ae__promo-title {
      color: #ff4500;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-66ae__promo-description {
      font-size: 0.95em;
      color: #444;
    }

    .page-66ae__why-choose-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-66ae__feature-card {
      text-align: center;
      padding: 25px;
      background-color: #e8f5e9;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-66ae__feature-icon-wrapper {
      margin-bottom: 15px;
      width: 100%;
      height: 150px; /* Min size for image */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-66ae__feature-icon {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-66ae__feature-title {
      font-size: 1.2em;
      color: #2e7d32;
      margin-bottom: 10px;
    }

    .page-66ae__feature-description {
      font-size: 0.9em;
      color: #555;
    }

    .page-66ae__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-66ae__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-66ae__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-66ae__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: color 0.3s ease;
    }

    .page-66ae__faq-question:hover {
      color: #ff4500;
    }

    .page-66ae__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
      color: inherit; /* Ensure color change on hover applies */
    }

    .page-66ae__faq-toggle {
      font-size: 1.5em;
      font-weight: normal;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

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

    .page-66ae__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 0.95em;
    }

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

    .page-66ae__partners-section {
      text-align: center;
    }

    .page-66ae__partner-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .page-66ae__partner-logo-wrapper {
      width: 150px;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-66ae__partner-logo {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    .page-66ae__social-media-links {
      text-align: center;
      margin-top: 30px;
    }

    .page-66ae__social-media-links a {
      display: inline-block;
      margin: 0 10px;
      font-size: 2em;
      color: #ff4500;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-66ae__social-media-links a:hover {
      color: #e03c00;
    }

    .page-66ae__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-66ae__register-button,
    .page-66ae__login-button {
      background-color: #4CAF50;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      min-width: 120px; /* Ensure button width */
    }

    .page-66ae__login-button {
      background-color: #008CBA;
    }

    .page-66ae__register-button:hover {
      background-color: #45a049;
    }

    .page-66ae__login-button:hover {
      background-color: #007bff;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-66ae__header-brand {
        font-size: 1.8em;
      }

      .page-66ae__hero-section {
        height: 50vh;
      }

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

      .page-66ae__hero-subtitle {
        font-size: 1em;
      }

      .page-66ae__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-66ae__section {
        padding: 20px 15px;
        margin-bottom: 20px;
      }

      .page-66ae__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-66ae__game-grid,
      .page-66ae__promo-list,
      .page-66ae__why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-66ae__game-card,
      .page-66ae__promo-item,
      .page-66ae__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-66ae__game-image-wrapper {
        height: 180px;
      }

      .page-66ae__game-info {
        padding: 15px;
      }

      .page-66ae__game-title {
        font-size: 1.3em;
      }

      .page-66ae__promo-title {
        font-size: 1.1em;
      }

      .page-66ae__feature-icon-wrapper {
        height: 120px;
      }

      .page-66ae__feature-title {
        font-size: 1.1em;
      }

      .page-66ae__faq-section {
        padding: 20px 15px;
      }

      .page-66ae__faq-question {
        padding: 10px 0;
        font-size: 0.95em;
      }

      .page-66ae__faq-question h3 {
        font-size: 1em;
      }

      .page-66ae__faq-answer {
        padding: 15px 10px !important;
        font-size: 0.9em;
      }

      .page-66ae__partner-grid {
        gap: 10px;
      }

      .page-66ae__partner-logo-wrapper {
        width: 120px;
        height: 80px;
      }

      .page-66ae__social-media-links a {
        font-size: 1.5em;
        margin: 0 8px;
      }

      .page-66ae__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-66ae__register-button,
      .page-66ae__login-button {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-66ae__hero-title {
        font-size: 1.8em;
      }

      .page-66ae__hero-subtitle {
        font-size: 0.9em;
      }
    }
  