
    /* Base styles */
    .page-55win {
      font-family: 'Arial', sans-serif;
      color: #ffffff; /* White text for contrast */
      background-color: #000000; /* Black background */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-55win__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

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

    .page-55win__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Gold for titles */
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1px;
    }

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

    /* Hero Section */
    .page-55win__hero-section {
      position: relative;
      padding-top: 120px; /* For fixed header */
      margin-bottom: 20px; /* Space below banner */
      background-color: #1a1a1a;
      overflow: hidden; /* Ensure image doesn't overflow */
    }

    .page-55win__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Center image */
      object-fit: contain; /* Ensure image is not stretched */
    }

    .page-55win__login-button-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FF4500; /* Orange-red for action */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: pulse 2s infinite;
    }

    .page-55win__login-button-float:hover {
      background-color: #e63900;
      transform: scale(1.05);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories */
    .page-55win__game-categories {
      background-color: #0d0d0d;
    }

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

    .page-55win__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px; /* Ensure cards have some height */
    }

    .page-55win__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-55win__game-card-image {
      width: 100%;
      max-width: 200px; /* Adjust as needed, but ensure min 200px */
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      max-height: 150px; /* Control height */
    }

    .page-55win__game-card-title {
      font-size: 1.1em;
      font-weight: bold;
      color: #FFD700;
      text-decoration: none;
      display: block;
      margin-top: auto; /* Push title to bottom if card content is shorter */
    }

    .page-55win__game-card-title:hover {
      text-decoration: underline;
    }

    /* Game Providers */
    .page-55win__providers-section {
      background-color: #000000;
    }

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

    .page-55win__provider-logo {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      transition: transform 0.3s ease;
    }

    .page-55win__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-55win__provider-image {
      width: 100%;
      max-width: 150px; /* Max width for logos */
      height: auto;
      object-fit: contain;
    }

    /* Promotions Section */
    .page-55win__promotions-section {
      background-color: #0d0d0d;
    }

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

    .page-55win__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-55win__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
    }

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

    .page-55win__promo-content {
      padding: 20px;
      flex-grow: 1; /* Allow content to grow */
      display: flex;
      flex-direction: column;
    }

    .page-55win__promo-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      text-decoration: none;
      display: block;
    }

    .page-55win__promo-title:hover {
      text-decoration: underline;
    }

    .page-55win__promo-description {
      color: #cccccc;
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1; /* Allow description to grow */
    }

    .page-55win__promo-button {
      display: inline-block;
      background-color: #FF4500;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start; /* Align button to start */
    }

    .page-55win__promo-button:hover {
      background-color: #e63900;
    }

    /* About Section */
    .page-55win__about-section {
      background-color: #000000;
    }

    .page-55win__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      text-align: left;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-55win__about-text {
      color: #ffffff;
      font-size: 1.1em;
      margin-bottom: 15px;
    }

    .page-55win__about-highlight {
      color: #FFD700;
      font-weight: bold;
    }

    .page-55win__about-list {
      list-style-type: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-55win__about-list li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      color: #cccccc;
    }

    .page-55win__about-list li::before {
      content: '✔';
      color: #FFD700;
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-55win__faq-section {
      background-color: #0d0d0d;
    }

    .page-55win__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-55win__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-55win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      border-bottom: 1px solid #333333;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-55win__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-55win__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

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

    .page-55win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      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-55win__faq-item.active .page-55win__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-55win__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

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

      .page-55win__section-subtitle {
        font-size: 1em;
      }

      .page-55win__game-grid,
      .page-55win__providers-grid,
      .page-55win__promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-55win__game-card-image {
        max-width: 150px;
      }

      .page-55win__provider-image {
        max-width: 100px;
      }

      .page-55win__promo-image {
        height: 150px;
      }

      .page-55win__login-button-float {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

      .page-55win__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-55win__faq-question h3 {
        font-size: 1.1em;
      }

      .page-55win__faq-answer {
        padding: 0 20px;
      }

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

      /* Image responsive optimization */
      .page-55win img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-55win__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-55win__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-55win__provider-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-55win__promo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-55win__game-card, .page-55win__provider-logo, .page-55win__promo-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
  