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

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

    .page-60win__floating-button {
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.2s ease;
      min-width: 120px;
      white-space: nowrap;
    }

    .page-60win__floating-button--register {
      background-color: #ffcc00; /* Vibrant yellow */
      color: #1a1a2e;
    }

    .page-60win__floating-button--login {
      background-color: #007bff; /* Blue */
      color: #ffffff;
    }

    .page-60win__floating-button:hover {
      transform: translateY(-2px);
    }

    /* Hero section */
    .page-60win__hero-section {
      position: relative;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: #0f0f1a;
      padding-top: 10px; /* Small top padding as per instruction, assuming body has offset */
    }

    .page-60win__hero-content {
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-60win__hero-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

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

    .page-60win__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-60win__button {
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    .page-60win__button--primary {
      background-color: #ffcc00;
      color: #1a1a2e;
    }

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

    .page-60win__button--secondary {
      background-color: #007bff;
      color: #ffffff;
    }

    .page-60win__button--secondary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-60win__hero-image-wrapper {
      width: 100%;
      max-width: 900px; /* Product display image centered */
      margin: 0 auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-60win__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* General section styling */
    .page-60win__section-title {
      font-size: 2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
    }

    .page-60win__subsection-title {
      font-size: 1.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 40px;
    }

    .page-60win__features-section, .page-60win__games-section, .page-60win__promotions-section, .page-60win__payment-providers-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-60win__features-grid, .page-60win__games-grid, .page-60win__promotions-grid, .page-60win__logos-grid {
      display: grid;
      gap: 30px;
      justify-content: center;
      margin-top: 20px;
    }

    .page-60win__features-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-60win__feature-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-60win__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-60win__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-60win__feature-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-60win__feature-description {
      font-size: 0.95em;
      color: #e0e0e0;
    }

    .page-60win__games-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-60win__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
      box-sizing: border-box;
    }

    .page-60win__game-card:hover {
      transform: translateY(-5px);
    }

    .page-60win__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-60win__game-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-60win__game-description {
      font-size: 0.9em;
      color: #e0e0e0;
      padding: 0 15px 20px;
    }

    .page-60win__promotions-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-60win__promo-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
      box-sizing: border-box;
    }

    .page-60win__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-60win__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-60win__promo-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-60win__promo-description {
      font-size: 0.9em;
      color: #e0e0e0;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-60win__button--small {
      padding: 10px 20px;
      font-size: 0.9em;
      margin-bottom: 20px;
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      border-radius: 20px;
    }

    .page-60win__button--small:hover {
      background-color: #0056b3;
    }

    .page-60win__logos-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
    }

    .page-60win__logo-item {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #2a2a4a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-60win__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-60win__logo-image {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
    }

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

    .page-60win__faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-60win__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-60win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-60win__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-60win__faq-q-text {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-60win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-60win__faq-item.active .page-60win__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-60win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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;
    }

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

    .page-60win__faq-answer p {
      margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-60win__hero-title {
        font-size: 2em;
      }

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

      .page-60win__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-60win__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-60win__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-60win__floating-button {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 100px;
      }

      .page-60win__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-60win__subsection-title {
        font-size: 1.3em;
        margin-bottom: 20px;
      }

      /* List item responsive */
      .page-60win__features-grid,
      .page-60win__games-grid,
      .page-60win__promotions-grid,
      .page-60win__logos-grid {
        display: flex; /* Ensure flex or grid is set for container */
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-60win__feature-item,
      .page-60win__game-card,
      .page-60win__promo-card,
      .page-60win__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for items */
        margin-bottom: 15px; /* Add spacing between items */
      }

      /* Image responsiveness */
      .page-60win__feature-icon,
      .page-60win__game-image,
      .page-60win__promo-image,
      .page-60win__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-60win__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      /* Text wrapping */
      .page-60win__feature-description,
      .page-60win__game-description,
      .page-60win__promo-description,
      .page-60win__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-60win__faq-q-text {
        font-size: 1.1em;
      }

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

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