
    .page-76win-com {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for body padding, if not set in shared.css */
    }

    .page-76win-com__wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-76win-com__hero-section {
      position: relative;
      width: 100%;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
      margin-bottom: 40px;
      padding-top: 10px; /* Small decorative top padding, header offset handled by body */
      box-sizing: border-box;
    }

    .page-76win-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.7);
      max-width: 100%;
    }

    .page-76win-com__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      max-width: 90%;
    }

    .page-76win-com__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffc107;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-76win-com__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #f8f9fa;
    }

    .page-76win-com__action-button {
      display: inline-block;
      background-color: #e91e63;
      color: white;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-76win-com__action-button:hover {
      background-color: #d81b60;
    }

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

    .page-76win-com__floating-button {
      background-color: #007bff;
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-76win-com__floating-button--register {
      background-color: #28a745;
    }

    .page-76win-com__floating-button--register:hover {
      background-color: #218838;
    }

    .page-76win-com__floating-button--login {
      background-color: #007bff;
    }

    .page-76win-com__floating-button--login:hover {
      background-color: #0056b3;
    }

    .page-76win-com__section-title {
      font-size: 2em;
      color: #ffc107;
      text-align: center;
      margin-bottom: 30px;
      padding-top: 20px;
      border-bottom: 2px solid rgba(255, 193, 7, 0.3);
      padding-bottom: 10px;
    }

    .page-76win-com__game-categories {
      padding: 40px 0;
      background-color: #2a2a4a;
      margin-bottom: 40px;
    }

    .page-76win-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-content: center;
      padding: 0 15px;
    }

    .page-76win-com__game-card {
      background-color: #3b3b6b;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-76win-com__game-card:hover {
      transform: translateY(-5px);
    }

    .page-76win-com__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #ffc107;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-76win-com__game-title {
      font-size: 1.3em;
      color: #ffc107;
      padding: 15px;
      margin: 0;
    }

    .page-76win-com__promotions {
      padding: 40px 0;
      margin-bottom: 40px;
    }

    .page-76win-com__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-76win-com__promotion-item {
      background-color: #3b3b6b;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-76win-com__promotion-title {
      font-size: 1.5em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-76win-com__promotion-description {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    .page-76win-com__why-us {
      padding: 40px 0;
      background-color: #2a2a4a;
      margin-bottom: 40px;
    }

    .page-76win-com__why-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-76win-com__why-us-item {
      background-color: #3b3b6b;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-76win-com__why-us-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-76win-com__why-us-title {
      font-size: 1.4em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-76win-com__why-us-text {
      font-size: 0.95em;
      color: #e0e0e0;
    }

    .page-76win-com__providers-section {
      padding: 40px 0;
      margin-bottom: 40px;
    }

    .page-76win-com__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      padding: 0 15px;
    }

    .page-76win-com__provider-logo {
      background-color: #3b3b6b;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-76win-com__provider-logo img {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      height: auto;
    }

    .page-76win-com__faq-section {
      padding: 40px 0;
      background-color: #2a2a4a;
      margin-bottom: 40px;
    }

    .page-76win-com__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-76win-com__faq-item {
      background-color: #3b3b6b;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-76win-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #4c4c8f;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      color: #ffc107;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-76win-com__faq-question h3 {
      margin: 0;
      color: #ffc107;
      pointer-events: none;
    }

    .page-76win-com__faq-question:hover {
      background-color: #5d5daf;
    }

    .page-76win-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-76win-com__faq-item.active .page-76win-com__faq-toggle {
      transform: rotate(45deg);
    }

    .page-76win-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-76win-com__contact-section {
      padding: 40px 0;
      background-color: #1a1a2e;
    }

    .page-76win-com__contact-info {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-76win-com__contact-info p {
      margin: 5px 0;
      font-size: 1.1em;
    }

    .page-76win-com__social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-76win-com__social-link {
      color: #ffc107;
      font-size: 2.5em;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .page-76win-com__social-link:hover {
      color: #e91e63;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-76win-com__hero-section {
        height: 300px;
        margin-bottom: 30px;
      }
      .page-76win-com__hero-title {
        font-size: 2em;
      }
      .page-76win-com__hero-description {
        font-size: 1em;
      }
      .page-76win-com__action-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-76win-com__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-76win-com__game-grid, .page-76win-com__promotion-list, .page-76win-com__why-us-grid, .page-76win-com__providers-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }
      .page-76win-com__game-card, .page-76win-com__promotion-item, .page-76win-com__why-us-item, .page-76win-com__provider-logo {
        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 smaller screens */
      }
      .page-76win-com__game-image, .page-76win-com__why-us-icon, .page-76win-com__provider-logo img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-76win-com__game-image {
        height: 180px;
      }
      .page-76win-com__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-76win-com__faq-answer {
        padding: 0 20px;
      }
      .page-76win-com__faq-item.active .page-76win-com__faq-answer {
        padding: 15px 20px !important;
      }
      .page-76win-com__floating-buttons {
        bottom: 10px;
        right: 10px;
      }
      .page-76win-com__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }
      .page-76win-com__social-link {
        font-size: 2em;
      }
    }

    @media (max-width: 480px) {
      .page-76win-com__hero-section {
        height: 250px;
      }
      .page-76win-com__hero-title {
        font-size: 1.8em;
      }
      .page-76win-com__hero-description {
        font-size: 0.9em;
      }
    }
  