
    .page-7cluo {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-7cluo__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-7cluo__section--dark {
      background-color: #222;
    }

    .page-7cluo__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-7cluo__section-subtitle {
      font-size: 1.8em;
      color: #f0f0f0;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-7cluo__hero-section {
      position: relative;
      padding-top: 10px; /* Small offset, assuming body padding handles header */
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background-color: #000;
    }

    .page-7cluo__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-7cluo__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 2;
    }

    .page-7cluo__hero-content {
      position: relative;
      z-index: 3;
      color: #fff;
      padding: 20px;
    }

    .page-7cluo__hero-title {
      font-size: 3.5em;
      margin-bottom: 10px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      font-weight: bold;
    }

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

    .page-7cluo__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-7cluo__cta-button:hover {
      background-color: #e6b800;
    }

    .page-7cluo__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      box-sizing: border-box;
      padding: 0 10px;
    }

    .page-7cluo__floating-button {
      flex: 1;
      background-color: #007bff;
      color: #fff;
      padding: 12px 15px;
      border-radius: 8px;
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-7cluo__floating-button--login {
      background-color: #28a745;
    }

    .page-7cluo__floating-button:hover {
      opacity: 0.9;
    }

    .page-7cluo__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-7cluo__game-card {
      background-color: #2e2e2e;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-7cluo__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    }

    .page-7cluo__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-7cluo__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-7cluo__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px;
    }

    .page-7cluo__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

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

    .page-7cluo__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    }

    .page-7cluo__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-7cluo__promo-card-content {
      padding: 20px;
    }

    .page-7cluo__promo-card-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-7cluo__promo-card-description {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-7cluo__features-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-7cluo__feature-item {
      background-color: #2e2e2e;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-7cluo__feature-item:hover {
      background-color: #3a3a3a;
    }

    .page-7cluo__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-7cluo__feature-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-7cluo__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-7cluo__faq-section {
      background-color: #1a1a1a;
    }

    .page-7cluo__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-7cluo__faq-item {
      background-color: #2e2e2e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      box-sizing: border-box;
    }

    .page-7cluo__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #3a3a3a;
      color: #f0f0f0;
      font-size: 1.15em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-7cluo__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1em; /* Ensure h3 doesn't override parent font size */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-7cluo__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-7cluo__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

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

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

    .page-7cluo__contact-cta {
      text-align: center;
      margin-top: 50px;
    }

    .page-7cluo__contact-text {
      font-size: 1.2em;
      margin-bottom: 25px;
      color: #f0f0f0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-7cluo__section {
        padding: 30px 15px;
      }

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

      .page-7cluo__section-subtitle {
        font-size: 1.5em;
      }

      .page-7cluo__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-7cluo__floating-buttons {
        gap: 10px;
        bottom: 15px;
        width: calc(100% - 30px);
        max-width: none;
        padding: 0;
      }

      .page-7cluo__floating-button {
        font-size: 1em;
        padding: 10px 12px;
      }

      .page-7cluo__game-categories-grid,
      .page-7cluo__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-7cluo__feature-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-7cluo__features-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-7cluo__game-card-image,
      .page-7cluo__promo-card-image {
        height: 180px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-7cluo__game-card-title,
      .page-7cluo__promo-card-title {
        font-size: 1.3em;
      }

      .page-7cluo__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-7cluo__faq-answer {
        padding: 0 15px;
      }
      .page-7cluo__faq-item.active .page-7cluo__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-7cluo__hero-title {
        font-size: 2em;
      }
      .page-7cluo__section-title {
        font-size: 1.8em;
      }
      .page-7cluo__floating-buttons {
        bottom: 10px;
        gap: 8px;
      }
      .page-7cluo__floating-button {
        font-size: 0.9em;
        padding: 10px;
      }
    }
  