
    .page-55winbet {
      font-family: 'Segoe UI', Roboto, Arial, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      box-sizing: border-box;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-55winbet * {
      box-sizing: border-box;
    }

    .page-55winbet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-55winbet__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top as per fixed nav bar requirement */
      background: url('[GALLERY:hero:1920x1080:55winbet,banner,mobile_betting]') no-repeat center center/cover;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-55winbet__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-55winbet__hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 20px;
    }

    .page-55winbet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #e6b800;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-55winbet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-55winbet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 10px;
      background-color: rgba(26, 26, 46, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-55winbet__button {
      display: block;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      color: #fff;
      width: 48%;
    }

    .page-55winbet__button--primary {
      background-color: #e6b800;
      color: #1a1a2e;
    }

    .page-55winbet__button--primary:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    .page-55winbet__button--secondary {
      background-color: #3a3a5a;
      color: #fff;
    }

    .page-55winbet__button--secondary:hover {
      background-color: #5a5a7a;
      transform: translateY(-2px);
    }

    .page-55winbet__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-55winbet__section-title {
      font-size: 2.2em;
      color: #e6b800;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .page-55winbet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #e6b800;
    }

    .page-55winbet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

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

    .page-55winbet__game-item:hover {
      transform: translateY(-5px);
    }

    .page-55winbet__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid #e6b800;
    }

    .page-55winbet__game-title {
      font-size: 1.4em;
      color: #e6b800;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-55winbet__game-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px;
    }

    .page-55winbet__about-content {
      text-align: left;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-55winbet__about-text {
      font-size: 1.1em;
      color: #ccc;
      line-height: 1.8;
    }

    .page-55winbet__payment-methods, .page-55winbet__providers {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-55winbet__logo-item {
      background-color: #2a2a4a;
      padding: 15px 20px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      max-width: 220px;
      height: 100px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-55winbet__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-55winbet__logo-item img {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
    }

    .page-55winbet__faq-list {
      margin-top: 40px;
      text-align: left;
    }

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

    .page-55winbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #3a3a5a;
      color: #e6b800;
      font-size: 1.15em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-55winbet__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-55winbet__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1em;
      pointer-events: none;
    }

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

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

    .page-55winbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #ccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-55winbet__faq-item.active .page-55winbet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to cover any content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-55winbet__social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    .page-55winbet__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: #3a3a5a;
      border-radius: 50%;
      color: #e6b800;
      font-size: 1.8em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-55winbet__social-link:hover {
      background-color: #e6b800;
      color: #1a1a2e;
      transform: translateY(-3px);
    }

    .page-55winbet__social-icon {
      /* Placeholder for actual SVG or font icon */
      display: block;
      width: 24px;
      height: 24px;
      background-color: currentColor;
      -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"%3E%3Cpath d="M0 0h24v24H0z" fill="none"/%3E%3Cpath d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"/%3E%3C/svg%3E') no-repeat center center;
      mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"%3E%3Cpath d="M0 0h24v24H0z" fill="none"/%3E%3Cpath d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"/%3E%3C/svg%3E') no-repeat center center;
      -webkit-mask-size: cover;
      mask-size: cover;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-55winbet__hero-section {
        min-height: 300px;
        padding-bottom: 40px;
      }

      .page-55winbet__hero-title {
        font-size: 2em;
      }

      .page-55winbet__hero-description {
        font-size: 1em;
      }

      .page-55winbet__section {
        padding: 40px 0;
      }

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

      .page-55winbet__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-55winbet__game-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-55winbet__game-image {
        height: 180px;
      }

      .page-55winbet__game-title {
        font-size: 1.2em;
      }

      .page-55winbet__about-text {
        font-size: 0.95em;
      }

      .page-55winbet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-width: unset;
        height: 80px;
      }

      .page-55winbet__payment-methods, .page-55winbet__providers {
        gap: 15px;
        padding: 0 10px;
      }

      .page-55winbet__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-55winbet__faq-answer {
        padding: 0 15px;
        font-size: 0.9em;
      }

      .page-55winbet__faq-item.active .page-55winbet__faq-answer {
        padding: 15px !important;
      }

      .page-55winbet__floating-buttons {
        padding: 10px;
      }

      .page-55winbet__button {
        font-size: 1em;
        padding: 10px 15px;
      }

      /* Image responsiveness */
      .page-55winbet img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-55winbet__game-image, .page-55winbet__logo-item img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-55winbet__hero-title {
        font-size: 1.8em;
      }
      .page-55winbet__floating-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-55winbet__button {
        width: 90%;
        margin: 0 auto;
      }
      .page-55winbet {
        padding-bottom: 120px; /* Adjust for stacked buttons */
      }
    }
  