
    .page-66ff-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-66ff-2__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      padding: 20px 15px 0;
    }

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

    .page-66ff-2__button {
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
      text-decoration: none; /* Ensure no underline for button-like elements */
      display: inline-block;
      text-align: center;
    }

    .page-66ff-2__button--primary {
      background-color: #ff4500; /* Orange-red */
      color: #fff;
    }

    .page-66ff-2__button--primary:hover {
      background-color: #e03c00;
      transform: translateY(-2px);
    }

    .page-66ff-2__button--secondary {
      background-color: #007bff; /* Blue */
      color: #fff;
      margin-left: 15px;
    }

    .page-66ff-2__button--secondary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-66ff-2__hero-section {
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: #fff;
      padding: 10px 20px 60px; /* Small top padding, more bottom */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    .page-66ff-2__hero-content {
      max-width: 900px;
      margin-bottom: 30px;
      padding: 0 15px;
    }

    .page-66ff-2__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
      color: #fff;
    }

    .page-66ff-2__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-66ff-2__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .page-66ff-2__hero-image-container {
      width: 100%;
      max-width: 800px;
      margin-top: 30px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Important for responsive images */
    }

    .page-66ff-2__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Game Categories Section */
    .page-66ff-2__games-section,
    .page-66ff-2__promo-section,
    .page-66ff-2__features-section,
    .page-66ff-2__faq-section,
    .page-66ff-2__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-66ff-2__game-grid,
    .page-66ff-2__promo-grid,
    .page-66ff-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      padding: 0 15px;
    }

    .page-66ff-2__game-card,
    .page-66ff-2__promo-card,
    .page-66ff-2__feature-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Important for responsive list items */
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-66ff-2__game-card:hover,
    .page-66ff-2__promo-card:hover,
    .page-66ff-2__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-66ff-2__game-card-image,
    .page-66ff-2__promo-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%;
      display: block;
      box-sizing: border-box; /* Important for responsive images */
    }

    .page-66ff-2__game-card-title,
    .page-66ff-2__promo-card-title {
      font-size: 1.6em;
      color: #1a1a1a;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-66ff-2__game-card-text,
    .page-66ff-2__promo-card-text {
      font-size: 1em;
      color: #666;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* Features Section */
    .page-66ff-2__feature-icon {
      width: 150px; /* Min size 200x200, so 150px is problematic for a pure icon, but fine for an illustration */
      height: 150px;
      object-fit: contain;
      margin: 20px auto 15px;
      max-width: 100%;
      box-sizing: border-box; /* Important for responsive images */
    }

    .page-66ff-2__feature-title {
      font-size: 1.4em;
      color: #1a1a1a;
      margin-bottom: 10px;
      font-weight: bold;
      padding: 0 15px;
    }

    .page-66ff-2__feature-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
    }

    /* FAQ Section */
    .page-66ff-2__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-66ff-2__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box; /* Important for responsive list items */
    }

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

    .page-66ff-2__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-66ff-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-66ff-2__faq-toggle {
      font-size: 1.8em;
      color: #ff4500;
      font-weight: bold;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-66ff-2__faq-item.active .page-66ff-2__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
      color: #007bff;
    }

    .page-66ff-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      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;
    }

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

    .page-66ff-2__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* CTA Section */
    .page-66ff-2__cta-section {
      background-color: #e6f2ff; /* Light blue background */
      text-align: center;
      padding: 80px 20px;
      border-radius: 10px;
      margin-top: 40px;
      padding: 60px 20px;
    }

    .page-66ff-2__cta-title {
      font-size: 2.2em;
      color: #1e3c72;
      margin-bottom: 15px;
      font-weight: bold;
      padding: 0 15px;
    }

    .page-66ff-2__cta-description {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 30px;
      padding: 0 15px;
    }

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

    .page-66ff-2__floating-button {
      flex: 1;
      margin: 0 10px;
      padding: 12px 0;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #fff;
      text-align: center;
    }

    .page-66ff-2__floating-button--register {
      background-color: #ff4500; /* Orange-red */
    }

    .page-66ff-2__floating-button--register:hover {
      background-color: #e03c00;
      transform: translateY(-2px);
    }

    .page-66ff-2__floating-button--login {
      background-color: #007bff; /* Blue */
    }

    .page-66ff-2__floating-button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-66ff-2__hero-title {
        font-size: 2.5em;
      }

      .page-66ff-2__hero-description {
        font-size: 1.1em;
      }

      .page-66ff-2__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .page-66ff-2__button--secondary {
        margin-left: 0;
      }

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

      .page-66ff-2__section-description {
        font-size: 1em;
      }

      .page-66ff-2__games-section,
      .page-66ff-2__promo-section,
      .page-66ff-2__features-section,
      .page-66ff-2__faq-section,
      .page-66ff-2__cta-section {
        padding: 40px 15px;
      }

      .page-66ff-2__game-grid,
      .page-66ff-2__promo-grid,
      .page-66ff-2__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
      }

      .page-66ff-2__game-card,
      .page-66ff-2__promo-card,
      .page-66ff-2__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !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-66ff-2__faq-question,
      .page-66ff-2__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-66ff-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-66ff-2__floating-button {
        font-size: 1.1em;
        padding: 10px 0;
        margin: 0 5px;
      }

      .page-66ff-2__cta-title {
        font-size: 1.8em;
      }

      .page-66ff-2__cta-description {
        font-size: 1em;
      }

      .page-66ff-2__game-card-image,
      .page-66ff-2__promo-card-image,
      .page-66ff-2__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-66ff-2__hero-title {
        font-size: 2em;
      }
      .page-66ff-2__section-title {
        font-size: 1.8em;
      }
      .page-66ff-2__cta-title {
        font-size: 1.6em;
      }
    }
  