
    .page-88cld {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-88cld__wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-88cld__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Minimal padding, relying on body for header offset */
      box-sizing: border-box;
    }

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

    .page-88cld__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      max-width: 90%;
    }

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

    .page-88cld__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 25px;
      color: #e0e0e0;
    }

    .page-88cld__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary action */
      color: #fff;
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-88cld__cta-button:hover {
      background-color: #0056b3;
    }

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

    .page-88cld__floating-button {
      background-color: #28a745; /* Green for register */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-88cld__floating-button--login {
      background-color: #007bff; /* Blue for login */
    }

    .page-88cld__floating-button:hover {
      filter: brightness(1.1);
    }

    .page-88cld__section {
      padding: 60px 0;
      text-align: center;
      background-color: #222;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-88cld__section-title {
      font-size: 2.2em;
      color: #ffd700;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-88cld__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffd700;
    }

    .page-88cld__text-content {
      max-width: 800px;
      margin: 0 auto 30px auto;
      font-size: 1.1em;
      color: #e0e0e0;
    }

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

    .page-88cld__game-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      color: #f0f0f0;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-88cld__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-88cld__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #ffd700;
    }

    .page-88cld__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-88cld__game-card-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-88cld__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

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

    .page-88cld__promo-item {
      background-color: #333;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 250px;
      box-sizing: border-box;
    }

    .page-88cld__promo-title {
      font-size: 1.8em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-88cld__promo-description {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-88cld__promo-code {
      background-color: #555;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      font-family: 'Courier New', monospace;
      font-weight: bold;
      display: inline-block;
      margin-top: 10px;
    }

    .page-88cld__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      text-align: left;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-88cld__list-item {
      background-color: #333;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
    }

    .page-88cld__list-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      object-fit: contain;
      filter: brightness(1.2);
    }

    .page-88cld__list-text {
      font-size: 1em;
      color: #e0e0e0;
    }

    .page-88cld__faq-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-88cld__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-88cld__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-88cld__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #3a3a3a;
      color: #ffd700;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-88cld__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-88cld__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #ffd700;
      pointer-events: none;
    }

    .page-88cld__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-88cld__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-88cld__faq-item.active .page-88cld__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-88cld__faq-answer p {
      margin: 0 0 10px 0;
      color: #ccc;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .page-88cld__hero-title {
        font-size: 2.5em;
      }
      .page-88cld__hero-subtitle {
        font-size: 1.2em;
      }
      .page-88cld__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-88cld__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-88cld__hero-section {
        height: 50vh;
      }
      .page-88cld__hero-title {
        font-size: 2em;
      }
      .page-88cld__hero-subtitle {
        font-size: 1em;
      }
      .page-88cld__section {
        padding: 40px 0;
      }
      .page-88cld__section-title {
        font-size: 1.8em;
      }
      .page-88cld__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
        width: calc(100% - 30px);
        justify-content: center;
      }
      .page-88cld__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-88cld__game-categories {
        grid-template-columns: 1fr;
      }
      .page-88cld__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-88cld__list {
        grid-template-columns: 1fr;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-88cld__list-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        padding: 15px;
      }
      .page-88cld__faq-question {
        padding: 15px;
        font-size: 1em;
      }
      .page-88cld__faq-question h3 {
        font-size: 1em;
      }
      .page-88cld__faq-answer {
        padding: 0 15px;
      }
      .page-88cld__faq-item.active .page-88cld__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-88cld__hero-title {
        font-size: 1.8em;
      }
      .page-88cld__hero-subtitle {
        font-size: 0.9em;
      }
      .page-88cld__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
      }
      .page-88cld__game-card-title {
        font-size: 1.3em;
      }
      .page-88cld__promo-title {
        font-size: 1.5em;
      }
    }
  