
    .page-97-win {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
    }

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

    .page-97-win__hero-section {
      background-color: #0f0f1a;
      color: #ffffff;
      text-align: center;
      padding: 10px 0 60px 0;
      position: relative;
      overflow: hidden;
      border-bottom: 5px solid #ffcc00;
    }

    .page-97-win__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-97-win__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-97-win__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-97-win__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ffffff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-97-win__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-97-win__cta-button:hover {
      background-color: #e0b300;
      transform: translateY(-2px);
    }

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

    .page-97-win__button-register,
    .page-97-win__button-login {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-decoration: none;
      font-size: 1em;
      white-space: nowrap;
    }

    .page-97-win__button-register:hover,
    .page-97-win__button-login:hover {
      background-color: #e0b300;
      transform: translateY(-2px);
    }

    .page-97-win__section {
      padding: 60px 20px;
      text-align: center;
      background-color: #1a1a2e;
    }

    .page-97-win__section--alt {
      background-color: #2a2a44;
    }

    .page-97-win__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-97-win__section-subtitle {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-97-win__game-grid,
    .page-97-win__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-97-win__game-item,
    .page-97-win__provider-item {
      background-color: #2a2a44;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 20px;
    }

    .page-97-win__game-item:hover,
    .page-97-win__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-97-win__game-image,
    .page-97-win__provider-logo {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #ffcc00;
      box-sizing: border-box;
      max-width: 100%;
    }

    .page-97-win__provider-logo {
      height: 150px;
      object-fit: contain;
      background-color: #3b3b5c;
      padding: 15px;
      border-bottom: none;
    }

    .page-97-win__game-title,
    .page-97-win__provider-name {
      font-size: 1.4em;
      color: #ffcc00;
      margin: 20px 0 10px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-97-win__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-97-win__feature-item {
      background-color: #2a2a44;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      box-sizing: border-box;
    }

    .page-97-win__feature-item h3 {
      color: #ffcc00;
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-97-win__feature-item p {
      color: #e0e0e0;
      font-size: 1em;
      margin-bottom: 0;
    }

    .page-97-win__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-97-win__payment-item {
      background-color: #2a2a44;
      border-radius: 8px;
      padding: 15px 25px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-97-win__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-97-win__payment-icon {
      max-width: 80px;
      height: auto;
      max-height: 50px;
      object-fit: contain;
    }

    .page-97-win__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-97-win__social-item {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 1em;
    }

    .page-97-win__social-item:hover {
      background-color: #e0b300;
    }

    .page-97-win__faq-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-97-win__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-97-win__faq-item {
      background-color: #2a2a44;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .page-97-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3b3b5c;
      transition: background-color 0.3s ease;
    }

    .page-97-win__faq-question:hover {
      background-color: #4c4c7a;
    }

    .page-97-win__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-97-win__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-97-win__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: #e0e0e0;
      text-align: left;
    }

    .page-97-win__faq-item.active .page-97-win__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-97-win__contact-section {
      background-color: #0f0f1a;
      padding: 60px 20px;
      text-align: center;
    }

    .page-97-win__contact-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    @media (max-width: 768px) {
      .page-97-win__hero-title {
        font-size: 2.2em;
      }

      .page-97-win__hero-subtitle {
        font-size: 1.2em;
      }

      .page-97-win__section-title {
        font-size: 1.8em;
      }

      .page-97-win__game-grid,
      .page-97-win__provider-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-97-win__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-97-win__feature-item,
      .page-97-win__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-97-win__payment-methods,
      .page-97-win__social-links {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-97-win__payment-item {
        min-width: unset;
      }

      .page-97-win__game-image,
      .page-97-win__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-97-win__game-item,
      .page-97-win__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-97-win__faq-question h3 {
        font-size: 1.1em;
      }

      .page-97-win__faq-answer {
        padding: 0 15px;
      }

      .page-97-win__faq-item.active .page-97-win__faq-answer {
        padding: 15px 15px !important;
      }

      .page-97-win__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }

      .page-97-win__button-register,
      .page-97-win__button-login {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-97-win__hero-title {
        font-size: 1.8em;
      }

      .page-97-win__hero-subtitle {
        font-size: 1em;
      }

      .page-97-win__section-title {
        font-size: 1.5em;
      }

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

      .page-97-win__payment-item {
        padding: 10px 15px;
      }

      .page-97-win__payment-icon {
        max-width: 60px;
      }
    }
  