
    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e;
      color: #e0e0e0;
      line-height: 1.6;
    }

    .page-win-16 {
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-win-16__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #e44d26;
      padding: 0 15px;
    }

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

    .page-win-16__brand-keyword {
      color: #fff;
      font-weight: bold;
    }

    /* Hero Section */
    .page-win-16__hero-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
      padding: 10px 20px 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-win-16__hero-content {
      z-index: 10;
      max-width: 900px;
      margin-bottom: 40px;
    }

    .page-win-16__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #ffffff;
      line-height: 1.2;
    }

    .page-win-16__hero-description {
      font-size: 1.3em;
      color: #c0c0c0;
      margin-bottom: 30px;
    }

    .page-win-16__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-win-16__button {
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      user-select: none;
      color: #fff;
      min-width: 180px;
      box-sizing: border-box;
    }

    .page-win-16__button--primary {
      background-color: #e44d26;
    }

    .page-win-16__button--primary:hover {
      background-color: #c23b1a;
      transform: translateY(-2px);
    }

    .page-win-16__button--secondary {
      background-color: #4CAF50;
    }

    .page-win-16__button--secondary:hover {
      background-color: #45a049;
      transform: translateY(-2px);
    }

    .page-win-16__hero-image-wrapper {
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      margin-top: 40px;
    }

    .page-win-16__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Games Section */
    .page-win-16__games-section,
    .page-win-16__promotions-section,
    .page-win-16__features-section,
    .page-win-16__providers-section,
    .page-win-16__faq-section,
    .page-win-16__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-win-16__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-win-16__game-card {
      background-color: #2a2a4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-win-16__game-card:hover {
      transform: translateY(-10px);
    }

    .page-win-16__game-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-win-16__game-title {
      font-size: 1.8em;
      margin: 20px 0 10px;
      color: #e44d26;
      padding: 0 15px;
    }

    .page-win-16__game-text {
      font-size: 1em;
      color: #c0c0c0;
      padding: 0 20px 20px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-win-16__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-win-16__promo-card {
      background-color: #2a2a4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-win-16__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-win-16__promo-image {
      width: 100%;
      max-width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-win-16__promo-title {
      font-size: 1.6em;
      margin: 20px 0 10px;
      color: #e44d26;
      padding: 0 15px;
    }

    .page-win-16__promo-text {
      font-size: 1em;
      color: #c0c0c0;
      padding: 0 20px;
      flex-grow: 1;
    }

    .page-win-16__promo-link {
      display: inline-block;
      background-color: #4CAF50;
      color: #fff;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin: 20px auto;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-win-16__promo-link:hover {
      background-color: #45a049;
    }

    /* Features Section */
    .page-win-16__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .page-win-16__feature-item {
      background-color: #2a2a4a;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-win-16__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-win-16__feature-icon {
      width: 100px;
      max-width: 100%;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-win-16__feature-title {
      font-size: 1.5em;
      color: #e44d26;
      margin-bottom: 10px;
    }

    .page-win-16__feature-description {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    /* Providers Section */
    .page-win-16__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-win-16__provider-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      flex: 1 1 180px; /* Allow items to grow/shrink, min width 180px */
      max-width: 220px;
      box-sizing: border-box;
    }

    .page-win-16__provider-logo {
      width: 100%;
      max-width: 150px;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-win-16__provider-name {
      font-weight: bold;
      color: #e0e0e0;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-win-16__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-win-16__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-win-16__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3b3b6b;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-win-16__faq-question:hover {
      background-color: #4a4a7a;
    }

    .page-win-16__faq-question-title {
      margin: 0;
      font-size: 1.2em;
      color: #ffffff;
      pointer-events: none;
      flex-grow: 1;
      text-align: left;
    }

    .page-win-16__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-win-16__faq-item.active .page-win-16__faq-toggle {
      transform: rotate(45deg);
      color: #4CAF50;
    }

    .page-win-16__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: #c0c0c0;
      font-size: 1em;
      box-sizing: border-box;
    }

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

    .page-win-16__faq-answer p {
      margin: 0;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    /* CTA Section */
    .page-win-16__cta-section {
      text-align: center;
      background-color: #1a1a2e;
      padding-top: 40px;
      padding-bottom: 80px; /* Ensure space above floating buttons */
    }

    .page-win-16__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    /* Floating Buttons */
    .page-win-16__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 40px); /* Adjust width for mobile */
      max-width: 400px;
    }

    .page-win-16__floating-button {
      flex: 1;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      user-select: none;
      color: #fff;
      box-sizing: border-box;
    }

    .page-win-16__floating-button--register {
      background-color: #e44d26;
    }

    .page-win-16__floating-button--register:hover {
      background-color: #c23b1a;
    }

    .page-win-16__floating-button--login {
      background-color: #4CAF50;
    }

    .page-win-16__floating-button--login:hover {
      background-color: #45a049;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-win-16__section-title {
        font-size: 2em;
      }
      .page-win-16__hero-title {
        font-size: 2.5em;
      }
      .page-win-16__hero-description {
        font-size: 1.1em;
      }
      .page-win-16__game-grid, .page-win-16__promo-grid, .page-win-16__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-win-16__hero-section {
        padding: 10px 15px 40px;
      }
      .page-win-16__hero-title {
        font-size: 2em;
      }
      .page-win-16__hero-description {
        font-size: 1em;
      }
      .page-win-16__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-win-16__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 1.1em;
      }

      .page-win-16__games-section,
      .page-win-16__promotions-section,
      .page-win-16__features-section,
      .page-win-16__providers-section,
      .page-win-16__faq-section,
      .page-win-16__cta-section {
        padding: 40px 15px;
      }

      .page-win-16__section-title {
        font-size: 1.8em;
      }
      .page-win-16__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-win-16__game-grid, .page-win-16__promo-grid, .page-win-16__features-grid {
        grid-template-columns: 1fr;
      }
      .page-win-16__game-card, .page-win-16__promo-card, .page-win-16__feature-item, .page-win-16__provider-item, .page-win-16__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Resetting padding for direct children */
        padding-right: 0 !important;
      }
      .page-win-16__game-title, .page-win-16__promo-title, .page-win-16__feature-title, .page-win-16__provider-name {
        font-size: 1.4em;
      }
      .page-win-16__game-text, .page-win-16__promo-text, .page-win-16__feature-description {
        font-size: 0.9em;
      }

      .page-win-16__providers-list {
        flex-direction: column;
        align-items: center;
      }
      .page-win-16__provider-item {
        flex-basis: 100%;
        max-width: 300px;
        padding: 15px;
      }

      .page-win-16__faq-question {
        padding: 15px 20px;
      }
      .page-win-16__faq-question-title {
        font-size: 1.1em;
      }
      .page-win-16__faq-answer {
        padding: 15px 20px !important;
      }

      .page-win-16__floating-buttons {
        width: calc(100% - 30px);
        gap: 10px;
        bottom: 15px;
      }
      .page-win-16__floating-button {
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-win-16__hero-title {
        font-size: 1.8em;
      }
      .page-win-16__section-title {
        font-size: 1.6em;
      }
    }
  