
    .page-85-win {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-85-win__main-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-85-win__section-title {
      font-size: 2.5em;
      color: #ffc107;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-85-win__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ff4757;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-85-win__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      cursor: pointer;
      border: none;
    }

    .page-85-win__button--primary {
      background-color: #ff4757;
      color: #ffffff;
    }

    .page-85-win__button--primary:hover {
      background-color: #e63946;
      transform: translateY(-2px);
    }

    .page-85-win__button--secondary {
      background-color: #2f3640;
      color: #ffffff;
      border: 1px solid #ffc107;
    }

    .page-85-win__button--secondary:hover {
      background-color: #404a54;
      transform: translateY(-2px);
    }

    .page-85-win__text-button {
      color: #ffc107;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
      padding: 10px 15px;
      transition: color 0.3s ease;
    }

    .page-85-win__text-button:hover {
      color: #ffffff;
    }

    /* Floating Buttons */
    .page-85-win__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 15px;
      background-color: rgba(26, 26, 46, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
      gap: 10px;
    }

    .page-85-win__floating-buttons .page-85-win__button {
      flex: 1;
      max-width: 150px;
      font-size: 1.1em;
      padding: 10px 15px;
    }

    .page-85-win__button--register {
      background-color: #ffc107;
      color: #1a1a2e;
    }

    .page-85-win__button--register:hover {
      background-color: #e0ac00;
    }

    .page-85-win__button--login {
      background-color: #0f3460;
      color: #ffffff;
    }

    .page-85-win__button--login:hover {
      background-color: #0a254a;
    }

    /* Hero Section */
    .page-85-win__hero-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
      padding: 60px 15px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small padding, assuming body handles header offset */
    }

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

    .page-85-win__hero-title {
      font-size: 3.5em;
      color: #ffc107;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-85-win__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-85-win__hero-cta-group {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-85-win__hero-image {
      position: absolute;
      bottom: -10%;
      right: -10%;
      width: 600px;
      height: auto;
      opacity: 0.2;
      z-index: 0;
      transform: rotate(15deg);
    }

    /* Game Categories */
    .page-85-win__game-categories {
      padding: 60px 0;
    }

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

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

    .page-85-win__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-85-win__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 20px;
      border-bottom: 3px solid #ff4757;
    }

    .page-85-win__game-title {
      font-size: 1.8em;
      color: #ffc107;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-85-win__game-description {
      font-size: 1.1em;
      color: #c0c0c0;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-85-win__promotions-section {
      padding: 60px 0;
      text-align: center;
    }

    .page-85-win__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 40px;
    }

    .page-85-win__promo-item {
      background-color: #2f3640;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-85-win__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-85-win__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 3px solid #ffc107;
    }

    .page-85-win__promo-title {
      font-size: 1.5em;
      color: #ffc107;
      margin: 20px 15px 10px;
    }

    .page-85-win__promo-description {
      font-size: 1em;
      color: #c0c0c0;
      margin: 0 15px 20px;
    }

    .page-85-win__promotions-cta {
      margin-top: 20px;
    }

    /* About Section */
    .page-85-win__about-section {
      padding: 60px 15px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-85-win__about-content {
      background-color: #2f3640;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-85-win__about-text {
      font-size: 1.1em;
      color: #c0c0c0;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-85-win__about-text strong {
      color: #ffc107;
    }

    /* FAQ Section */
    .page-85-win__faq-section {
      padding: 60px 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-85-win__faq-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-85-win__faq-item {
      background-color: #2f3640;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

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

    .page-85-win__faq-question:hover {
      background-color: #1a1a2e;
    }

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

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

    .page-85-win__faq-item.active .page-85-win__faq-toggle {
      transform: rotate(45deg);
      color: #ffc107;
    }

    .page-85-win__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: #c0c0c0;
    }

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

    .page-85-win__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Call to Action Section */
    .page-85-win__cta-section {
      background-color: #0f3460;
      padding: 60px 15px;
      text-align: center;
      margin-top: 60px;
    }

    .page-85-win__cta-title {
      font-size: 2.5em;
      color: #ffc107;
      margin-bottom: 20px;
      font-weight: bold;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-85-win__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-85-win__hero-title {
        font-size: 2.5em;
      }

      .page-85-win__hero-description {
        font-size: 1em;
      }

      .page-85-win__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-85-win__hero-image {
        display: none;
      }

      .page-85-win__game-grid, .page-85-win__promo-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-85-win__game-item, .page-85-win__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0 15px 0;
      }

      .page-85-win__game-title, .page-85-win__promo-title {
        font-size: 1.3em;
      }

      .page-85-win__game-description, .page-85-win__promo-description {
        font-size: 0.95em;
      }

      .page-85-win__about-content, .page-85-win__faq-container {
        padding: 0 10px;
      }

      .page-85-win__about-text {
        font-size: 1em;
      }

      .page-85-win__faq-question {
        padding: 12px 15px;
      }

      .page-85-win__faq-question-text {
        font-size: 1.1em;
      }

      .page-85-win__faq-answer {
        padding: 0 10px;
      }

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

      .page-85-win__cta-title {
        font-size: 2em;
      }

      .page-85-win__cta-description {
        font-size: 1em;
      }

      .page-85-win__floating-buttons {
        padding: 8px 10px;
        gap: 8px;
      }

      .page-85-win__floating-buttons .page-85-win__button {
        font-size: 1em;
        padding: 8px 10px;
      }

      img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-85-win__game-image, .page-85-win__promo-image {
        height: 180px;
      }
    }

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

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