
    .page-66f {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Adjust for fixed header, as per instruction */
    }

    .page-66f__section-title {
      font-size: 2.2em;
      color: #c0392b; /* A strong red for emphasis, good contrast */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-66f__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: #555;
    }

    /* Hero Section */
    .page-66f__hero-section {
      background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

    .page-66f__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-66f__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff;
    }

    .page-66f__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ffe0d8;
    }

    .page-66f__hero-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

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

    .page-66f__button--primary {
      background-color: #f39c12; /* Orange for primary action */
      color: #fff;
    }

    .page-66f__button--primary:hover {
      background-color: #e67e22;
      transform: translateY(-3px);
    }

    .page-66f__button--secondary {
      background-color: rgba(255, 255, 255, 0.2);
      color: #fff;
      border: 2px solid #fff;
    }

    .page-66f__button--secondary:hover {
      background-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-3px);
    }

    /* Product Showcase */
    .page-66f__product-showcase,
    .page-66f__promotions,
    .page-66f__why-choose,
    .page-66f__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-66f__game-grid,
    .page-66f__promo-grid,
    .page-66f__features-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-66f__game-item,
    .page-66f__promo-item,
    .page-66f__feature-item {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding/border is included in width */
    }

    .page-66f__game-item:hover,
    .page-66f__promo-item:hover,
    .page-66f__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-66f__game-image,
    .page-66f__promo-image,
    .page-66f__feature-icon {
      max-width: 100%;
      height: auto;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      display: block; /* Remove extra space below image */
    }

    .page-66f__feature-icon {
      width: 150px; /* Larger icons for features */
      height: auto;
      margin: 20px auto 15px auto;
      border-radius: 0;
    }

    .page-66f__game-title,
    .page-66f__promo-title,
    .page-66f__feature-title {
      font-size: 1.5em;
      color: #c0392b;
      margin: 20px 15px 10px 15px;
      font-weight: bold;
    }

    .page-66f__game-text,
    .page-66f__promo-text,
    .page-66f__feature-text {
      font-size: 1em;
      color: #666;
      padding: 0 15px 20px 15px;
    }

    /* Promotions Section */
    .page-66f__promotions-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* Floating Buttons */
    .page-66f__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-66f__floating-button {
      display: block;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 120px;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-66f__floating-button--register {
      background-color: #f39c12; /* Orange */
      color: #fff;
    }

    .page-66f__floating-button--register:hover {
      background-color: #e67e22;
      transform: translateY(-3px);
    }

    .page-66f__floating-button--login {
      background-color: #3498db; /* Blue */
      color: #fff;
    }

    .page-66f__floating-button--login:hover {
      background-color: #2980b9;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-66f__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

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

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

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

    .page-66f__faq-question-text {
      margin: 0;
      font-size: 1.2em;
      color: #c0392b;
      pointer-events: none; /* Prevent h3 from blocking click */
      font-weight: bold;
    }

    .page-66f__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #c0392b;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      min-width: 20px; /* Ensure consistent width */
      text-align: center;
    }

    .page-66f__faq-item.active .page-66f__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-66f__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: #555;
    }

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

    .page-66f__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Space between answer and next question */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-66f__hero-title {
        font-size: 2.2em;
      }

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

      .page-66f__button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-66f__section-title {
        font-size: 1.8em;
      }

      .page-66f__section-description {
        font-size: 0.9em;
        margin-bottom: 20px;
      }

      .page-66f__game-grid,
      .page-66f__promo-grid,
      .page-66f__features-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      /* List item responsiveness */
      .page-66f__game-item,
      .page-66f__promo-item,
      .page-66f__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-66f__game-item .page-66f__game-text,
      .page-66f__promo-item .page-66f__promo-text,
      .page-66f__feature-item .page-66f__feature-text {
        padding: 0 10px 15px 10px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-66f__product-showcase,
      .page-66f__promotions,
      .page-66f__why-choose,
      .page-66f__faq-section {
        padding: 40px 15px; /* Adjust section padding */
      }

      /* Image responsiveness */
      .page-66f__game-image,
      .page-66f__promo-image,
      .page-66f__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-66f__game-item, .page-66f__promo-item, .page-66f__feature-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }

      .page-66f__floating-buttons {
        flex-direction: row; /* Buttons side-by-side on mobile */
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px); /* Adjust width to fit */
        right: auto;
        bottom: 15px;
        gap: 10px;
      }

      .page-66f__floating-button {
        flex: 1; /* Distribute space evenly */
        padding: 10px 15px;
        font-size: 0.95em;
        min-width: unset;
      }

      .page-66f__faq-question {
        padding: 15px 20px;
      }

      .page-66f__faq-question-text {
        font-size: 1.1em;
      }

      .page-66f__faq-answer {
        padding: 0 20px;
      }

      .page-66f__faq-item.active .page-66f__faq-answer {
        padding: 15px 20px !important;
      }
    }

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

      .page-66f__hero-description {
        font-size: 0.9em;
      }

      .page-66f__floating-buttons {
        width: calc(100% - 30px);
        bottom: 10px;
      }
      .page-66f__floating-button {
        font-size: 0.9em;
        padding: 8px 10px;
      }
    }
  