
    :root {
      --page-win-4-primary-color: #f0b90b; /* Gold/Yellow */
      --page-win-4-secondary-color: #e44d26; /* Red/Orange */
      --page-win-4-text-color: #ffffff;
      --page-win-4-background-dark: #1a1a1a;
      --page-win-4-background-light: #2c2c2c;
      --page-win-4-border-color: #444444;
    }

    .page-win-4 {
      background-color: var(--page-win-4-background-dark);
      color: var(--page-win-4-text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
    }

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

    /* Hero Section */
    .page-win-4__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 400px;
      padding: 60px 20px;
      overflow: hidden;
      background-color: #000; /* Ensure dark background for image */
      box-sizing: border-box;
    }

    .page-win-4__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100%; /* Important for responsiveness */
    }

    .page-win-4__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      color: var(--page-win-4-text-color);
    }

    .page-win-4__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-win-4-primary-color);
      text-transform: uppercase;
      line-height: 1.2;
    }

    .page-win-4__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-win-4__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    /* General Buttons */
    .page-win-4__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      box-sizing: border-box;
    }

    .page-win-4__button--primary {
      background-color: var(--page-win-4-primary-color);
      color: var(--page-win-4-background-dark);
    }

    .page-win-4__button--primary:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    .page-win-4__button--secondary {
      background-color: var(--page-win-4-secondary-color);
      color: var(--page-win-4-text-color);
      border: 1px solid var(--page-win-4-secondary-color);
    }

    .page-win-4__button--secondary:hover {
      background-color: #ff6347;
      transform: translateY(-2px);
    }

    .page-win-4__button--promo {
      background-color: var(--page-win-4-background-light);
      color: var(--page-win-4-primary-color);
      border: 1px solid var(--page-win-4-primary-color);
      padding: 8px 15px;
      font-size: 0.9em;
    }

    .page-win-4__button--promo:hover {
      background-color: var(--page-win-4-primary-color);
      color: var(--page-win-4-background-dark);
    }

    .page-win-4__button--large {
      padding: 15px 30px;
      font-size: 1.1em;
    }

    /* Section Titles */
    .page-win-4__section-title {
      font-size: 2em;
      color: var(--page-win-4-primary-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 30px;
      text-transform: uppercase;
    }

    /* About Section */
    .page-win-4__about-section {
      padding: 40px 0;
      background-color: var(--page-win-4-background-light);
    }

    .page-win-4__text-content {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Game Grid Section */
    .page-win-4__games-section {
      padding: 40px 0;
    }

    .page-win-4__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-win-4__game-item {
      background-color: var(--page-win-4-background-light);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-win-4__game-item:hover {
      transform: translateY(-5px);
    }

    .page-win-4__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-win-4__game-title {
      font-size: 1.4em;
      color: var(--page-win-4-primary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

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

    /* Promotion Section */
    .page-win-4__promo-section {
      padding: 40px 0;
      background-color: var(--page-win-4-background-light);
    }

    .page-win-4__promo-card {
      display: flex;
      flex-direction: column;
      background-color: var(--page-win-4-background-dark);
      border-radius: 10px;
      margin-bottom: 30px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-win-4__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-win-4__promo-content {
      padding: 25px;
    }

    .page-win-4__promo-title {
      font-size: 1.6em;
      color: var(--page-win-4-primary-color);
      margin-bottom: 10px;
    }

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

    /* FAQ Section */
    .page-win-4__faq-section {
      padding: 40px 0;
    }

    .page-win-4__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-win-4__faq-item {
      background-color: var(--page-win-4-background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-win-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-win-4__faq-title {
      font-size: 1.2em;
      color: var(--page-win-4-text-color);
      margin: 0;
      pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-win-4__faq-toggle {
      font-size: 1.5em;
      color: var(--page-win-4-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click */
    }

    .page-win-4__faq-item.active .page-win-4__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or - effectively) */
    }

    .page-win-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding 0 to animate */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
    }

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

    .page-win-4__faq-answer p {
      margin: 0 0 10px 0;
    }

    .page-win-4__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* CTA Section */
    .page-win-4__cta-section {
      padding: 50px 0;
      text-align: center;
      background-color: var(--page-win-4-background-light);
    }

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

    .page-win-4__floating-btn {
      display: block;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, background-color 0.3s ease;
      min-width: 100px;
      box-sizing: border-box;
    }

    .page-win-4__floating-btn--register {
      background-color: var(--page-win-4-primary-color);
      color: var(--page-win-4-background-dark);
    }

    .page-win-4__floating-btn--register:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    .page-win-4__floating-btn--login {
      background-color: var(--page-win-4-secondary-color);
      color: var(--page-win-4-text-color);
    }

    .page-win-4__floating-btn--login:hover {
      background-color: #ff6347;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-win-4__hero-section {
        padding: 40px 15px;
        min-height: 350px;
      }

      .page-win-4__hero-title {
        font-size: 2em;
      }

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

      .page-win-4__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-win-4__button {
        width: 100%;
        max-width: 250px; /* Limit button width on small screens */
        margin: 0 auto;
      }

      .page-win-4__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-win-4__game-grid {
        grid-template-columns: 1fr; /* Single column for games on mobile */
      }

      .page-win-4__game-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
      }

      .page-win-4__game-image {
        height: 180px;
      }

      .page-win-4__promo-card {
        flex-direction: column;
      }

      .page-win-4__promo-image {
        height: 200px;
      }

      .page-win-4__promo-title {
        font-size: 1.4em;
      }

      .page-win-4__faq-question {
        padding: 12px 15px;
      }

      .page-win-4__faq-title {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-win-4__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }

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

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

      .page-win-4__floating-btn {
        flex: 1;
        padding: 12px 15px;
        font-size: 0.95em;
        min-width: unset;
      }
    }

    @media (min-width: 769px) {
      .page-win-4__promo-card {
        flex-direction: row;
        align-items: center;
      }

      .page-win-4__promo-card:nth-child(even) {
        flex-direction: row-reverse; /* Alternate image and text */
      }

      .page-win-4__promo-image {
        width: 50%;
        height: 300px;
      }

      .page-win-4__promo-content {
        flex: 1;
        padding: 30px;
      }
    }

    @media (max-width: 480px) {
      .page-win-4__hero-title {
        font-size: 1.8em;
      }
      .page-win-4__section-title {
        font-size: 1.6em;
      }
      .page-win-4__floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        gap: 10px;
      }
      .page-win-4__floating-btn {
        padding: 10px 10px;
        font-size: 0.9em;
      }
    }
  