
    .page-68wwi {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-68wwi__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-68wwi__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-68wwi__section--dark {
      background-color: #0f0f1d;
    }

    .page-68wwi__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-68wwi__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-68wwi__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body has offset */
      padding-bottom: 80px; /* Ensure content is above floating buttons */
    }

    .page-68wwi__hero-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      filter: brightness(0.6); /* Darken background image for text readability */
    }

    .page-68wwi__hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px; /* Ensure hero section has a minimum height */
    }

    .page-68wwi__hero-title {
      font-size: 3.5em;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-68wwi__hero-description {
      font-size: 1.4em;
      color: #f0f0f0;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-68wwi__cta-button {
      display: inline-block;
      background-color: #e60073; /* Pink accent */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

    .page-68wwi__cta-button:hover {
      background-color: #cc0066;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-68wwi__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.85);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-68wwi__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 10px;
      margin: 0 5px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border: none;
      color: #ffffff;
    }

    .page-68wwi__floating-button--register {
      background-color: #e60073; /* Pink */
    }

    .page-68wwi__floating-button--register:hover {
      background-color: #cc0066;
    }

    .page-68wwi__floating-button--login {
      background-color: #007bff; /* Blue */
    }

    .page-68wwi__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Game Categories / Product Display */
    .page-68wwi__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-68wwi__game-card {
      background-color: #2c2c4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-68wwi__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-68wwi__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-68wwi__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-68wwi__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68wwi__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-68wwi__game-card-button {
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto;
    }

    .page-68wwi__game-card-button:hover {
      background-color: #0056b3;
    }

    /* Promotions Section */
    .page-68wwi__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-68wwi__promotion-card {
      background-color: #2c2c4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-68wwi__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-68wwi__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-68wwi__promotion-content {
      padding: 20px;
    }

    .page-68wwi__promotion-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68wwi__promotion-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    /* News Section */
    .page-68wwi__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-68wwi__news-article {
      background-color: #2c2c4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-68wwi__news-article:hover {
      transform: translateY(-5px);
    }

    .page-68wwi__news-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-68wwi__news-content {
      padding: 20px;
    }

    .page-68wwi__news-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68wwi__news-date {
      font-size: 0.85em;
      color: #999999;
      margin-bottom: 15px;
      display: block;
    }

    .page-68wwi__news-summary {
      font-size: 0.9em;
      color: #cccccc;
    }

    /* Payment and Providers */
    .page-68wwi__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
      align-items: center;
      justify-items: center;
    }

    .page-68wwi__logo-item {
      background-color: #2c2c4a;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      box-sizing: border-box;
    }

    .page-68wwi__logo-image {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%) brightness(1.8); /* Make logos white/light on dark background, no color change */
      transition: filter 0.3s ease;
    }

    .page-68wwi__logo-item:hover .page-68wwi__logo-image {
      filter: grayscale(0%) brightness(1.2); /* Restore color on hover */
    }

    /* FAQ Section */
    .page-68wwi__faq-section {
      text-align: left;
    }

    .page-68wwi__faq-item {
      background-color: #2c2c4a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

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

    .page-68wwi__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #ffcc00;
      pointer-events: none;
    }

    .page-68wwi__faq-question:hover {
      background-color: #4a4a7a;
    }

    .page-68wwi__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-68wwi__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: #cccccc;
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-68wwi__container {
        padding: 15px;
      }

      .page-68wwi__section-title {
        font-size: 2em;
      }

      .page-68wwi__hero-title {
        font-size: 2.5em;
      }

      .page-68wwi__hero-description {
        font-size: 1.1em;
      }

      .page-68wwi__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-68wwi__game-grid,
      .page-68wwi__promotion-grid,
      .page-68wwi__news-grid,
      .page-68wwi__logos-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-68wwi__game-card,
      .page-68wwi__promotion-card,
      .page-68wwi__news-article,
      .page-68wwi__logo-item,
      .page-68wwi__faq-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;
      }

      .page-68wwi__game-card-image,
      .page-68wwi__promotion-image,
      .page-68wwi__news-image,
      .page-68wwi__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-68wwi__floating-buttons {
        flex-direction: row;
        padding: 8px 0;
      }

      .page-68wwi__floating-button {
        font-size: 1em;
        padding: 10px 8px;
        margin: 0 3px;
      }

      .page-68wwi__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-68wwi__faq-question h3 {
        font-size: 1em;
      }

      .page-68wwi__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-68wwi__hero-title {
        font-size: 2em;
      }
      .page-68wwi__hero-description {
        font-size: 1em;
      }
      .page-68wwi__floating-button {
        font-size: 0.9em;
        padding: 8px 5px;
      }
    }
  