
    /* General styles for the page scope */
    .page-33-win-69 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

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

    /* Hero Section */
    .page-33-win-69__hero-section {
      position: relative;
      background-color: #1a2a6c; /* Deep blue, common for betting sites */
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Top: 10px (decorative), Sides: 20px, Bottom: 60px */
      overflow: hidden;
      margin-bottom: 30px;
    }

    .page-33-win-69__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background */
      z-index: 0;
    }

    .page-33-win-69__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-33-win-69__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold/yellow for highlights */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .page-33-win-69__hero-title strong {
      color: #fff;
    }

    .page-33-win-69__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-33-win-69__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold/yellow */
      color: #1a2a6c; /* Deep blue */
      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;
      cursor: pointer;
    }

    .page-33-win-69__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Floating Action Buttons (Register/Login) */
    .page-33-win-69__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-33-win-69__floating-button {
      background-color: #ff4d4d; /* Red for urgency */
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      width: 120px; /* Fixed width for buttons */
      box-sizing: border-box;
      border: none;
      cursor: pointer;
    }
    .page-33-win-69__floating-button--login {
      background-color: #4CAF50; /* Green for login */
    }

    .page-33-win-69__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    .page-33-win-69__floating-button--login:hover {
      background-color: #45a049;
    }

    /* Section Titles */
    .page-33-win-69__section-title {
      text-align: center;
      font-size: 2.2em;
      color: #1a2a6c;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-33-win-69__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }
    .page-33-win-69__description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      color: #444;
    }

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

    .page-33-win-69__product-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-33-win-69__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-33-win-69__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistent card appearance */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-33-win-69__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .page-33-win-69__product-card:hover .page-33-win-69__product-image {
      transform: scale(1.05);
    }

    .page-33-win-69__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-33-win-69__product-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-33-win-69__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-33-win-69__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .page-33-win-69__promotion-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 5px solid #ffcc00;
      height: 100%;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-33-win-69__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-33-win-69__promotion-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-33-win-69__promotion-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-33-win-69__promotion-date {
      font-size: 0.9em;
      color: #888;
      text-align: right;
    }

    /* Why Choose Us Section */
    .page-33-win-69__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .page-33-win-69__feature-item {
      background-color: #e0f2f7; /* Light blue */
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: background-color 0.3s ease, transform 0.3s ease;
      height: 100%;
      box-sizing: border-box;
    }

    .page-33-win-69__feature-item:hover {
      background-color: #c0e0e9;
      transform: translateY(-3px);
    }

    .page-33-win-69__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-33-win-69__feature-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-33-win-69__feature-description {
      font-size: 0.95em;
      color: #444;
    }

    /* FAQ Section */
    .page-33-win-69__faq-section {
      background-color: #fff;
      padding: 40px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 50px;
    }

    .page-33-win-69__faq-item {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .page-33-win-69__faq-item:last-child {
      border-bottom: none;
    }

    .page-33-win-69__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      transition: background-color 0.3s ease;
    }

    .page-33-win-69__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-33-win-69__faq-question h3 {
      font-size: 1.1em;
      color: #1a2a6c;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-33-win-69__faq-toggle {
      font-size: 1.5em;
      color: #ffcc00;
      margin-left: 15px;
      width: 20px;
      text-align: center;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-33-win-69__faq-item.active .page-33-win-69__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
      color: #ff4d4d;
    }

    .page-33-win-69__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;
      color: #555;
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-33-win-69__container {
        padding: 10px;
      }

      .page-33-win-69__hero-section {
        padding: 10px 15px 40px; /* Adjusted for mobile */
      }

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

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

      .page-33-win-69__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-33-win-69__description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      /* Floating buttons on mobile */
      .page-33-win-69__floating-buttons {
        flex-direction: row; /* Row for mobile */
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
      }
      .page-33-win-69__floating-button {
        width: 48% !important; /* Adjust width for two buttons */
        padding: 10px 15px !important;
        font-size: 0.9em !important;
      }

      /* Product Grid */
      .page-33-win-69__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-33-win-69__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
      }
      .page-33-win-69__product-image-wrapper {
        height: 180px;
      }

      /* Promotion List */
      .page-33-win-69__promotion-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-33-win-69__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        padding: 20px;
      }

      /* Feature List */
      .page-33-win-69__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-33-win-69__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        padding: 20px;
      }

      /* FAQ Section */
      .page-33-win-69__faq-section {
        padding: 30px 15px;
      }
      .page-33-win-69__faq-question h3 {
        font-size: 1em;
      }
      .page-33-win-69__faq-answer {
        padding: 0 10px;
      }
      .page-33-win-69__faq-item.active .page-33-win-69__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-33-win-69__floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
      }
      .page-33-win-69__floating-button {
        width: 49% !important; /* Slightly adjust for very small screens */
        padding: 8px 10px !important;
        font-size: 0.85em !important;
      }
      .page-33-win-69__hero-title {
        font-size: 1.8em;
      }
      .page-33-win-69__hero-description {
        font-size: 0.9em;
      }
      .page-33-win-69__cta-button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  