
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #DAA520; /* Goldenrod */
      --dark-background: #1a1a2e; /* Dark blue-purple */
      --light-text: #ffffff;
      --accent-color: #E94560; /* Reddish-pink */
      --button-bg: linear-gradient(90deg, #FFD700 0%, #DAA520 100%);
      --button-hover-bg: linear-gradient(90deg, #DAA520 0%, #FFD700 100%);
      --text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
      --border-radius: 8px;
    }

    /* Base styles for the page content, ensuring it doesn't overlap with header */
    .page-555win-24 {
      background-color: var(--dark-background);
      color: var(--light-text);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 100px; /* Space for floating buttons */
    }

    /* Fixed navigation bar spacing - assuming body padding-top is handled by shared.css */
    /* If shared.css does NOT provide body padding, uncomment the following: */
    /* .page-555win-24 {
        padding-top: var(--header-offset, 122px);
    } */

    .page-555win-24__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-555win-24__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-555win-24__section--dark {
      background-color: #2c2c4d;
    }

    .page-555win-24__heading {
      color: var(--primary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-shadow: var(--text-shadow);
    }

    .page-555win-24__sub-heading {
      color: var(--secondary-color);
      font-size: 1.8em;
      margin-top: 30px;
      margin-bottom: 15px;
      text-shadow: var(--text-shadow);
    }

    .page-555win-24__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
    }

    /* Hero Section */
    .page-555win-24__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px; /* Small decorative padding-top, body handles main offset */
      background: linear-gradient(135deg, #1a1a2e 0%, #3a005a 100%);
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-555win-24__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-555win-24__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
    }

    .page-555win-24__hero-title {
      font-size: 3em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    .page-555win-24__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 30px;
    }

    .page-555win-24__button {
      display: inline-block;
      padding: 12px 25px;
      background: var(--button-bg);
      color: var(--dark-background);
      font-weight: bold;
      border-radius: var(--border-radius);
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-555win-24__button:hover {
      background: var(--button-hover-bg);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

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

    .page-555win-24__product-card {
      background-color: #3e3e60;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-555win-24__product-card:hover {
      transform: translateY(-5px);
    }

    .page-555win-24__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-555win-24__product-content {
      padding: 20px;
    }

    .page-555win-24__product-title {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

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

    /* Promotions Section */
    .page-555win-24__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-555win-24__promo-card {
      background-color: #3e3e60;
      padding: 25px;
      border-radius: var(--border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-555win-24__promo-card::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 80px;
      height: 80px;
      background: var(--accent-color);
      transform: rotate(45deg);
      opacity: 0.2;
    }

    .page-555win-24__promo-title {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
      text-shadow: var(--text-shadow);
    }

    .page-555win-24__promo-description {
      color: #ddd;
      font-size: 1em;
      margin-bottom: 20px;
    }

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

    .page-555win-24__floating-button {
      padding: 10px 20px;
      background: var(--button-bg);
      color: var(--dark-background);
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      font-size: 1em;
      text-align: center;
      min-width: 120px;
    }

    .page-555win-24__floating-button:hover {
      background: var(--button-hover-bg);
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    /* FAQ Section */
    .page-555win-24__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-555win-24__faq-item {
      background-color: #3e3e60;
      border-radius: var(--border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .page-555win-24__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #4e4e70;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-555win-24__faq-question:hover {
      background-color: #5e5e80;
    }

    .page-555win-24__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-555win-24__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-555win-24__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.3s ease;
      color: #ddd;
      text-align: left;
    }

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

    .page-555win-24__faq-item.active .page-555win-24__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Payment and Provider Logos */
    .page-555win-24__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-555win-24__logo-item {
      padding: 10px 15px;
      background-color: #3e3e60;
      border-radius: var(--border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      height: 60px;
    }

    .page-555win-24__logo-image {
      max-width: 100%;
      max-height: 40px;
      height: auto;
      object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-555win-24__container {
        padding: 10px;
      }

      .page-555win-24__heading {
        font-size: 2em;
      }

      .page-555win-24__sub-heading {
        font-size: 1.5em;
      }

      .page-555win-24__hero-title {
        font-size: 2.2em;
      }

      .page-555win-24__hero-description {
        font-size: 1.1em;
      }

      .page-555win-24__product-grid,
      .page-555win-24__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-555win-24__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 10px;
        justify-content: space-around;
      }

      .page-555win-24__floating-button {
        flex: 1;
        margin: 0 5px;
        min-width: unset;
      }

      /* List item mobile responsiveness */
      .page-555win-24__product-card,
      .page-555win-24__promo-card,
      .page-555win-24__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-555win-24__product-content,
      .page-555win-24__promo-card,
      .page-555win-24__faq-question,
      .page-555win-24__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-555win-24__logo-grid {
        gap: 10px;
      }

      .page-555win-24__logo-item {
        min-width: 100px;
        height: 50px;
      }

      .page-555win-24__logo-image {
        max-height: 30px;
      }

      /* Ensure images are responsive */
      .page-555win-24__product-image,
      .page-555win-24__hero-background,
      .page-555win-24__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-555win-24__hero-title {
        font-size: 1.8em;
      }

      .page-555win-24__hero-description {
        font-size: 1em;
      }

      .page-555win-24__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-555win-24__floating-button {
        font-size: 0.9em;
        padding: 8px 15px;
      }
    }
  