
    .page-8win {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-8win__section-title {
      font-size: 2.2em;
      color: #e0b400; /* Gold accent color */
      text-align: center;
      margin-bottom: 40px;
      padding: 0 15px;
      word-wrap: break-word; /* Ensure long titles break */
      overflow-wrap: break-word;
    }

    /* Buttons common style */
    .page-8win__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8win__button--primary {
      background-color: #e0b400; /* Gold */
      color: #1a1a2e; /* Dark text */
      border: 2px solid #e0b400;
    }

    .page-8win__button--primary:hover {
      background-color: #ffda44;
      transform: translateY(-2px);
    }

    .page-8win__button--secondary {
      background-color: transparent;
      color: #e0b400; /* Gold */
      border: 2px solid #e0b400;
    }

    .page-8win__button--secondary:hover {
      background-color: #e0b400;
      color: #1a1a2e;
      transform: translateY(-2px);
    }

    .page-8win__center-button {
      text-align: center;
      margin-top: 40px;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-8win__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero_bg:1920x1080:betting_bg,casino_bg,abstract]') no-repeat center center/cover;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 60px 20px; /* Add 10px top padding for decorative spacing below header */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8win__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-8win__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffffff;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8win__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8win__hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      justify-content: center;
      align-items: center;
    }

    /* Sticky Buttons */
    .page-8win__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 46, 0.95); /* Semi-transparent dark background */
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-8win__sticky-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 48%; /* Adjust for spacing */
      box-sizing: border-box;
    }

    .page-8win__sticky-button--register {
      background-color: #007bff; /* Blue for register */
      color: #ffffff;
    }

    .page-8win__sticky-button--register:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-8win__sticky-button--login {
      background-color: #28a745; /* Green for login */
      color: #ffffff;
    }

    .page-8win__sticky-button--login:hover {
      background-color: #1e7e34;
      transform: translateY(-2px);
    }

    /* Sections common style */
    .page-8win__features-section,
    .page-8win__promo-section,
    .page-8win__news-section,
    .page-8win__about-section,
    .page-8win__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8win__features-grid,
    .page-8win__promo-grid,
    .page-8win__news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .page-8win__feature-item,
    .page-8win__promo-item,
    .page-8win__news-item {
      background-color: #2e2e4a; /* Slightly lighter dark background */
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8win__feature-item:hover,
    .page-8win__promo-item:hover,
    .page-8win__news-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8win__feature-image,
    .page-8win__promo-image,
    .page-8win__news-image,
    .page-8win__about-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #e0b400; /* Gold border */
      box-sizing: border-box;
      max-width: 100% !important; /* Ensure responsiveness */
    }

    .page-8win__feature-item h3,
    .page-8win__promo-item h3,
    .page-8win__news-item h3 {
      font-size: 1.5em;
      color: #e0b400;
      margin: 20px 15px 10px 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8win__feature-description,
    .page-8win__promo-description,
    .page-8win__news-excerpt {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px 20px 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8win__news-date {
      font-size: 0.9em;
      color: #888888;
      margin: 0 15px 10px 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* About Section */
    .page-8win__about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .page-8win__about-text {
      flex: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8win__about-text p {
      margin-bottom: 15px;
      color: #cccccc;
    }

    .page-8win__about-text ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-8win__about-text li {
      background-color: #2e2e4a;
      margin-bottom: 10px;
      padding: 10px 15px;
      border-left: 4px solid #e0b400;
      border-radius: 5px;
      font-weight: bold;
      color: #ffffff;
      word-wrap: break-word;
      overflow-wrap: break-word;
      box-sizing: border-box; /* Ensure padding is included in width */
      width: 100%; /* Default to full width on mobile */
    }

    /* FAQ Section */
    .page-8win__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-8win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a5a; /* Slightly darker for question header */
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #4a4a6a;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8win__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-8win__faq-question-text {
      font-size: 1.2em;
      color: #e0b400;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e0b400;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click */
    }

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

    .page-8win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

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

    .page-8win__faq-answer p {
      margin: 0;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive adjustments for images */
    .page-8win img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      box-sizing: border-box;
    }

    /* Media Queries for Tablet and Desktop */
    @media (min-width: 768px) {
      .page-8win__hero-title {
        font-size: 3.5em;
      }

      .page-8win__hero-description {
        font-size: 1.3em;
      }

      .page-8win__hero-buttons {
        flex-direction: row;
        gap: 25px;
      }

      .page-8win__sticky-buttons {
        display: none; /* Hide sticky buttons on desktop if they are part of shared header */
      }
      
      .page-8win__section-title {
        font-size: 2.8em;
      }

      .page-8win__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }

      .page-8win__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }

      .page-8win__news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }

      .page-8win__about-content {
        flex-direction: row;
        align-items: flex-start;
      }

      .page-8win__about-image {
        width: 40%;
        height: auto;
        object-fit: contain;
      }
      
      .page-8win__about-text {
        padding-right: 30px;
      }

      .page-8win__about-text li {
        width: auto; /* Allow items to take natural width */
      }
    }

    @media (max-width: 768px) {
      /* Ensure all list items are full width on mobile */
      .page-8win__about-text li {
        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 if needed */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Ensure image responsiveness */
      .page-8win__feature-image,
      .page-8win__promo-image,
      .page-8win__news-image,
      .page-8win__about-image {
        max-width: 100% !important;
        height: auto !important; /* Allow height to adjust */
        box-sizing: border-box !important;
      }
      
      .page-8win__hero-section {
        padding-bottom: 90px; /* Make space for sticky buttons */
      }
    }
  