
    /* Base styles for the page */
    .page-555win55 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Small padding at the top, relying on body padding for header offset */
    }

    .page-555win55__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-555win55__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #1f4068, #1a1a2e);
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-555win55__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-555win55__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-555win55__hero-title {
      font-size: 2.8em;
      color: #e0b400; /* Gold/Yellow accent */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-555win55__hero-subtitle {
      font-size: 1.3em;
      color: #ccc;
      margin-bottom: 30px;
    }

    .page-555win55__promo-link {
      display: inline-block;
      background-color: #e0b400;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's not a link, but a styled button */
      cursor: pointer;
    }

    .page-555win55__promo-link:hover {
      background-color: #ffcd38;
      transform: translateY(-3px);
    }

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

    .page-555win55__floating-button {
      background-color: #e0b400;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's not a link */
      cursor: pointer;
      min-width: 120px; /* Ensure buttons are not too small */
    }

    .page-555win55__floating-button--login {
      background-color: #28a745; /* Green for login */
      color: #fff;
    }

    .page-555win55__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }
    
    .page-555win55__floating-button--login:hover {
      background-color: #218838;
    }

    /* Section Styling */
    .page-555win55__section {
      background-color: #2a2a4a; /* Slightly lighter dark background for sections */
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-555win55__section-title {
      font-size: 2em;
      color: #e0b400;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-555win55__text-content {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 20px;
    }

    /* Product Grid */
    .page-555win55__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-555win55__product-card {
      background-color: #1f4068;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px; /* Padding for text below image */
    }

    .page-555win55__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    }

    .page-555win55__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-555win55__product-title {
      font-size: 1.4em;
      color: #e0b400;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-555win55__product-description {
      font-size: 0.95em;
      color: #aaa;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-555win55__promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-555win55__promo-item {
      background-color: #1f4068;
      border-left: 5px solid #e0b400;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-555win55__promo-item-title {
      font-size: 1.3em;
      color: #e0b400;
      margin-bottom: 10px;
    }

    .page-555win55__promo-item-description {
      color: #ccc;
      font-size: 1em;
    }

    /* Features/Why Choose Section */
    .page-555win55__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-555win55__feature-item {
      background-color: #1f4068;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-555win55__feature-icon {
      width: 250px; /* Minimum 200x200 requirement met */
      height: 250px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-555win55__feature-title {
      font-size: 1.2em;
      color: #e0b400;
      margin-bottom: 10px;
    }

    .page-555win55__feature-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Payment and Providers */
    .page-555win55__logos-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-555win55__logo-item {
      background-color: #1f4068;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px; /* Ensure logos have enough space */
      height: 80px;
      transition: transform 0.2s ease;
    }
    
    .page-555win55__logo-item:hover {
        transform: translateY(-3px);
    }

    .page-555win55__logo-image {
      max-width: 100px; /* Logos can be smaller, but the placeholder will still be 400x200 */
      max-height: 50px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    /* FAQ Section */
    .page-555win55__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

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

    .page-555win55__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #2a2a4a;
      color: #e0b400;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-555win55__faq-question:hover {
      background-color: #3a3a5a;
    }

    .page-555win55__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-555win55__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-555win55__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for collapsed state */
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-555win55__faq-item.active .page-555win55__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px !important; /* Padding for expanded state */
      opacity: 1;
    }

    .page-555win55__faq-item.active .page-555win55__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or similar */
    }

    /* Call to Action */
    .page-555win55__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(90deg, #e0b400, #ffcd38);
      border-radius: 10px;
      margin-top: 40px;
      color: #1a1a2e;
    }

    .page-555win55__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #1a1a2e;
    }

    .page-555win55__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #333;
    }

    .page-555win55__cta-button {
      display: inline-block;
      background-color: #1a1a2e;
      color: #e0b400;
      padding: 15px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it's not a link */
      cursor: pointer;
    }

    .page-555win55__cta-button:hover {
      background-color: #333;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-555win55__container {
        padding: 15px;
      }

      .page-555win55__hero-title {
        font-size: 2em;
      }

      .page-555win55__hero-subtitle {
        font-size: 1em;
      }

      .page-555win55__promo-link,
      .page-555win55__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-555win55__section-title {
        font-size: 1.8em;
      }

      .page-555win55__product-grid,
      .page-555win55__promo-list,
      .page-555win55__feature-list {
        grid-template-columns: 1fr; /* Stack items on mobile */
      }

      /* Mobile responsive for list items and containers */
      .page-555win55__promo-list,
      .page-555win55__feature-list,
      .page-555win55__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-555win55__promo-item,
      .page-555win55__feature-item,
      .page-555win55__faq-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 smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-555win55__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-bottom: 15px !important;
      }
      .page-555win55__product-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-555win55__feature-icon {
        width: 200px !important; /* Ensure min size is kept, but scale down */
        height: 200px !important;
        max-width: 100% !important;
        height: auto !important;
      }
      .page-555win55__logo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-555win55__hero-background-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-555win55__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: rgba(26, 26, 46, 0.9);
        padding: 10px;
        justify-content: space-around;
        gap: 5px;
      }
      .page-555win55__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }
      .page-555win55__faq-question,
      .page-555win55__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-555win55__faq-question h3 {
        font-size: 1em;
      }
      .page-555win55__faq-item.active .page-555win55__faq-answer {
        padding: 15px !important;
      }
      .page-555win55__cta-title {
        font-size: 1.8em;
      }
      .page-555win55__cta-description {
        font-size: 1.1em;
      }
    }
  