
    /* Global styles for the page-69win1 scope */
    .page-69win1 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #FFFFFF; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for potential footer content */
    }

    .page-69win1__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-69win1__hero-section {
      text-align: center;
      padding-top: 10px; /* Desktop safety margin */
      padding-bottom: 40px;
      background-color: #000000;
    }
    @media (max-width: 768px) {
      .page-69win1__hero-section {
        padding-top: 140px; /* Mobile safety margin for fixed header */
      }
    }

    .page-69win1__hero-image {
      width: 100%;
      height: auto;
      max-width: 1200px;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* Yellow glow */
    }
    .page-69win1__logo {
      width: 100%;
      max-width: 250px; /* Adjust logo size */
      height: auto;
      display: block;
      margin: 20px auto;
    }

    .page-69win1__hero-title {
      color: #FFD700; /* Yellow title */
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-69win1__hero-subtitle {
      color: #FFFFFF;
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-69win1__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000000; /* Black text on button */
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-69win1__cta-button:hover {
      background-color: #FFC400; /* Slightly darker yellow on hover */
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-69win1__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700; /* Yellow */
      color: #000000; /* Black text */
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-69win1__floating-login-button:hover {
      background-color: #FFC400;
      transform: scale(1.05);
    }

    /* Section Styles */
    .page-69win1__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-69win1__section-title {
      color: #FFD700;
      font-size: 2em;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-69win1__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #FFD700;
    }

    .page-69win1__text-content {
      color: #FFFFFF;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* Game Categories */
    .page-69win1__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-69win1__game-card {
      background-color: #1A1A1A; /* Darker black for cards */
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-69win1__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.7);
    }

    .page-69win1__game-card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .page-69win1__game-card-title {
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      margin-top: 10px;
    }

    /* Game Providers */
    .page-69win1__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-69win1__provider-logo {
      width: 100%;
      max-width: 150px;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      background-color: #222222; /* Slightly lighter background for logos */
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .page-69win1__provider-logo:hover {
      transform: scale(1.05);
    }

    /* Promotions Section */
    .page-69win1__promotion-card {
      background-color: #1A1A1A;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-69win1__promotion-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-69win1__promotion-description {
      color: #FFFFFF;
      margin-bottom: 20px;
    }

    .page-69win1__promotion-button {
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-69win1__promotion-button:hover {
      background-color: #FFC400;
      transform: translateY(-2px);
    }

    /* News Section */
    .page-69win1__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-69win1__news-item {
      background-color: #1A1A1A;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
      text-align: left;
    }

    .page-69win1__news-item:hover {
      transform: translateY(-5px);
    }

    .page-69win1__news-image {
      width: 100%;
      height: 200px; /* Fixed height for news images */
      object-fit: cover;
      display: block;
    }

    .page-69win1__news-content {
      padding: 20px;
    }

    .page-69win1__news-title {
      color: #FFD700;
      font-size: 1.3em;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .page-69win1__news-excerpt {
      color: #CCCCCC;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-69win1__faq-section {
      text-align: left;
    }

    .page-69win1__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-69win1__faq-item {
      background-color: #1A1A1A;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-69win1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #222222;
      color: #FFD700;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-69win1__faq-question h3 {
        margin: 0;
        color: #FFD700;
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-69win1__faq-question:hover {
      background-color: #333333;
    }

    .page-69win1__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-69win1__faq-item.active .page-69win1__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-69win1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-69win1__hero-title {
        font-size: 2em;
      }
      .page-69win1__hero-subtitle {
        font-size: 1em;
      }
      .page-69win1__section-title {
        font-size: 1.8em;
      }
      .page-69win1__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-69win1__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-69win1__news-grid {
        grid-template-columns: 1fr;
      }
      .page-69win1__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-69win1__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-69win1__faq-answer {
        font-size: 0.9em;
      }
    }

    /* Image responsiveness for all images */
    .page-69win1 img {
        max-width: 100%;
        height: auto;
        display: block; /* To remove extra space below image */
    }
    .page-69win1__image-wrapper { /* General wrapper for images to handle overflow */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0 auto; /* Center wrapper */
    }
    @media (max-width: 768px) {
        .page-69win1 img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-69win1__image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
        }
    }

  