
    /* CSS Styles for 18win1 page */
    .page-18win1 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for floating button */
    }

    /* Hero Section */
    .page-18win1__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for banner */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Clearance for fixed header */
      box-sizing: border-box;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient fallback */
    }

    .page-18win1__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-18win1__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-18win1__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-18win1__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for highlights */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-18win1__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-18win1__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffcc00;
      color: #1a2a6c;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline for button-like links */
    }

    .page-18win1__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Floating Login/Promotion Button */
    .page-18win1__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      background-color: #e74c3c; /* Striking color */
      color: #fff;
      padding: 15px 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      font-size: 1.2em;
      font-weight: bold;
      animation: pulse 2s infinite;
      text-decoration: none;
      display: block; /* Make it a block for better click area */
    }

    .page-18win1__floating-button:hover {
      background-color: #c0392b;
      animation: none;
    }

    @keyframes pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* General Content Sections */
    .page-18win1__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-18win1__section-title {
      font-size: 2.2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-18win1__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

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

    .page-18win1__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-18win1__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-18win1__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box; /* Required for image container */
    }

    .page-18win1__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-18win1__game-card:hover .page-18win1__game-image {
      transform: scale(1.05);
    }

    .page-18win1__game-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-18win1__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* Promotions Section */
    .page-18win1__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-18win1__promo-card {
      background-color: #e0f7fa;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-18win1__promo-card:hover {
      transform: translateY(-5px);
      background-color: #ccf1f5;
    }

    .page-18win1__promo-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
    }

    .page-18win1__promo-title {
      font-size: 1.6em;
      color: #00796b;
      margin-bottom: 10px;
    }

    .page-18win1__promo-text {
      font-size: 1em;
      color: #444;
      margin-bottom: 20px;
    }

    /* Why Choose Us Section */
    .page-18win1__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-18win1__feature-item {
      background-color: #f0f4f8;
      border-left: 5px solid #1a2a6c;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .page-18win1__feature-item:hover {
      border-color: #ffcc00;
      transform: translateX(5px);
    }

    .page-18win1__feature-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-18win1__feature-text {
      font-size: 0.95em;
      color: #555;
    }

    /* FAQ Section */
    .page-18win1__faq-container {
      margin-top: 30px;
    }

    .page-18win1__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

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

    .page-18win1__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-18win1__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Keep it consistent with parent */
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #1a2a6c;
    }

    .page-18win1__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #ffcc00;
    }

    .page-18win1__faq-item.active .page-18win1__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to make it -) */
    }

    .page-18win1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      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;
      background-color: #fff;
    }

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

    /* Call to Action */
    .page-18win1__cta-section {
      text-align: center;
      background-color: #1a2a6c;
      color: #fff;
      padding: 50px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-18win1__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #ffcc00;
    }

    .page-18win1__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-18win1__hero-section {
        height: 50vh;
        padding-top: 10px; /* Ensure mobile header clearance */
      }

      .page-18win1__hero-title {
        font-size: 2em;
      }

      .page-18win1__hero-subtitle {
        font-size: 1em;
      }

      .page-18win1__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-18win1__floating-button {
        width: 95%;
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-18win1__section {
        padding: 30px 15px;
      }

      .page-18win1__section-title {
        font-size: 1.8em;
      }

      .page-18win1__game-grid,
      .page-18win1__promo-grid,
      .page-18win1__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-18win1__game-image-wrapper {
        height: 180px;
      }

      .page-18win1__game-title {
        font-size: 1.3em;
      }

      .page-18win1__promo-title {
        font-size: 1.4em;
      }

      .page-18win1__feature-title {
        font-size: 1.2em;
      }

      .page-18win1__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-18win1__faq-question h3 {
        font-size: 1em;
      }

      .page-18win1__faq-answer {
        padding: 0 15px; /* Initial padding */
      }

      .page-18win1__faq-item.active .page-18win1__faq-answer {
        padding: 15px !important; /* Final padding */
      }

      .page-18win1__cta-title {
        font-size: 2em;
      }

      .page-18win1__cta-text {
        font-size: 1em;
      }
      
      /* Image responsiveness for mobile */
      .page-18win1 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-18win1__game-image-wrapper,
      .page-18win1__promo-image-wrapper, /* if applicable */
      .page-18win1__feature-image-wrapper, /* if applicable */
      .page-18win1__hero-image-wrapper { /* if applicable */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    /* Ensure good color contrast */
    /* Text on dark backgrounds (hero, CTA) */
    .page-18win1__hero-title, .page-18win1__hero-subtitle, .page-18win1__cta-title, .page-18win1__cta-text, .page-18win1__floating-button {
      color: #fff; /* White text on dark background */
    }
    .page-18win1__hero-title, .page-18win1__cta-title {
        color: #ffcc00; /* Gold on dark background */
    }

    /* Text on light backgrounds */
    .page-18win1__section-title, .page-18win1__game-title, .page-18win1__promo-title, .page-18win1__feature-title, .page-18win1__faq-question h3 {
      color: #1a2a6c; /* Dark blue on light background */
    }
    .page-18win1__game-description, .page-18win1__promo-text, .page-18win1__feature-text, .page-18win1__faq-answer {
      color: #333; /* Dark grey on light background */
    }
    .page-18win1__button {
        background-color: #ffcc00; /* Gold button */
        color: #1a2a6c; /* Dark blue text on gold */
    }
    /* Floating button has custom colors, already checked for contrast */
    .page-18win1__floating-button {
        background-color: #e74c3c; /* Red */
        color: #fff; /* White text on red */
    }
    /* FAQ toggle */
    .page-18win1__faq-toggle {
        color: #ffcc00; /* Gold on light grey */
    }
  