
    :root {
      --primary-color: #e44d26; /* Example vibrant color */
      --secondary-color: #333; /* Dark background */
      --text-color-light: #f8f8f8;
      --text-color-dark: #333;
      --accent-color: #ffcc00; /* Gold/yellow for highlights */
      --background-dark: #1a1a1a;
      --background-light: #2a2a2a;
      --border-color: #444;
    }

    .page-555win-23 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      line-height: 1.6;
    }

    .page-555win-23__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-555win-23__section--dark {
      background-color: var(--background-light);
    }

    .page-555win-23__heading {
      color: var(--accent-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-555win-23__sub-heading {
      color: var(--primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-555win-23__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color-light);
    }

    .page-555win-23__hero-section {
      position: relative;
      height: 60vh;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding */
    }

    .page-555win-23__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-555win-23__hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
      padding: 20px;
    }

    .page-555win-23__brand-keyword {
      font-size: 3.5em;
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--accent-color);
      line-height: 1.2;
    }

    .page-555win-23__hero-slogan {
      font-size: 1.5em;
      margin-bottom: 20px;
      color: #eee;
    }

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

    .page-555win-23__button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      font-weight: bold;
    }

    .page-555win-23__button:hover {
      background-color: #d1401f;
      transform: translateY(-2px);
    }

    .page-555win-23__button--register {
      background-color: #28a745; /* Green for register */
    }

    .page-555win-23__button--register:hover {
      background-color: #218838;
    }

    .page-555win-23__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-555win-23__game-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid var(--border-color);
    }

    .page-555win-23__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-555win-23__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-555win-23__game-title {
      color: var(--accent-color);
      font-size: 1.5em;
      margin: 15px 10px 10px;
    }

    .page-555win-23__game-description {
      color: #ccc;
      font-size: 0.95em;
      padding: 0 15px;
    }

    .page-555win-23__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-555win-23__promotion-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      text-align: left;
      border: 1px solid var(--border-color);
    }

    .page-555win-23__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-555win-23__promotion-content {
      padding: 20px;
    }

    .page-555win-23__promotion-title {
      color: var(--accent-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-555win-23__promotion-text {
      color: #ccc;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-555win-23__why-choose-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-555win-23__why-choose-item {
      background-color: var(--background-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-555win-23__why-choose-item-title {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-555win-23__why-choose-item-text {
      color: #ccc;
      font-size: 0.95em;
    }

    .page-555win-23__payment-providers-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-555win-23__logo-wrapper {
      background-color: #fff;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px; /* Ensure logos are not too small */
      height: 80px;
      box-sizing: border-box;
    }

    .page-555win-23__logo-image {
      max-width: 100%;
      max-height: 50px;
      object-fit: contain;
      height: auto; /* Ensure aspect ratio */
    }

    .page-555win-23__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-555win-23__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-555win-23__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: var(--accent-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-555win-23__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-555win-23__faq-question h3 {
      margin: 0;
      color: var(--accent-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-555win-23__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

    .page-555win-23__faq-item.active .page-555win-23__faq-toggle {
      transform: rotate(45deg);
      color: var(--accent-color);
    }

    .page-555win-23__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-555win-23__faq-item.active .page-555win-23__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-555win-23__cta-section {
      background-color: var(--primary-color);
      padding: 50px 20px;
      color: #fff;
    }

    .page-555win-23__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-555win-23__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .page-555win-23__section {
        padding: 30px 15px;
      }

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

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

      .page-555win-23__text {
        font-size: 1em;
      }

      .page-555win-23__hero-section {
        height: 50vh;
      }

      .page-555win-23__brand-keyword {
        font-size: 2.5em;
      }

      .page-555win-23__hero-slogan {
        font-size: 1.2em;
      }

      .page-555win-23__floating-buttons {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: space-around;
        gap: 5px;
      }

      .page-555win-23__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-555win-23__games-grid,
      .page-555win-23__promotions-grid,
      .page-555win-23__why-choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-555win-23__why-choose-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-555win-23__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-555win-23__faq-question {
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important;
      }

      .page-555win-23__faq-question h3 {
        font-size: 1.1em;
      }

      .page-555win-23__faq-answer {
        padding: 0 15px;
      }

      .page-555win-23__faq-item.active .page-555win-23__faq-answer {
        padding: 15px !important;
      }

      .page-555win-23__logo-wrapper {
        min-width: unset;
        width: 48%; /* Two logos per row */
        height: 70px;
        padding: 10px;
      }

      .page-555win-23__logo-image {
        max-height: 40px;
      }

      .page-555win-23__cta-title {
        font-size: 1.8em;
      }

      .page-555win-23__cta-text {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-555win-23__brand-keyword {
        font-size: 2em;
      }
      .page-555win-23__hero-slogan {
        font-size: 1em;
      }
      .page-555win-23__button {
        padding: 8px 10px;
        font-size: 0.9em;
      }
      .page-555win-23__logo-wrapper {
        width: 100%; /* One logo per row */
      }
    }
  