
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
      --secondary-color: #333;
      --accent-color: #f7b200; /* Gold/yellow for highlights */
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --text-light: #f0f0f0;
      --text-dark: #333;
      --border-color: #444;
      --button-hover-color: #ff6a00;
    }

    /* Base styles for the page */
    .page-18-win {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    /* Fixed header offset handling */
    .page-18-win__hero-section {
        padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
    }

    /* General section styling */
    .page-18-win__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-18-win__section--dark {
      background-color: var(--background-light);
    }

    .page-18-win__section-title {
      font-size: 2.5em;
      color: var(--accent-color);
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-18-win__section-subtitle {
      font-size: 1.2em;
      color: var(--text-light);
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-18-win__hero-section {
      position: relative;
      height: 60vh; /* Adjust height for mobile view */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--text-light);
      overflow: hidden;
      background-color: var(--background-dark); /* Fallback */
    }

    .page-18-win__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6); /* Darken background for text readability */
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
    }

    .page-18-win__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 800px;
    }

    .page-18-win__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-18-win__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons (Register/Login) */
    .page-18-win__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-18-win__button {
      background-color: var(--primary-color);
      color: var(--text-light);
      border: none;
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none; /* Ensure no underline for button-like elements */
      display: inline-block;
      text-align: center;
      width: 45%; /* For mobile, side-by-side */
      box-sizing: border-box;
    }

    .page-18-win__button:hover {
      background-color: var(--button-hover-color);
    }

    .page-18-win__button--secondary {
      background-color: var(--secondary-color);
      border: 1px solid var(--primary-color);
    }

    .page-18-win__button--secondary:hover {
      background-color: #444;
      border-color: var(--button-hover-color);
    }

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

    .page-18-win__game-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      align-items: center; /* Center content horizontally */
      text-align: center;
    }

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

    .page-18-win__game-card-image-wrapper {
      width: 100%;
      height: 180px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-18-win__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-18-win__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .page-18-win__game-card-title {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-18-win__game-card-description {
      font-size: 0.95em;
      color: var(--text-light);
      margin-bottom: 15px;
      flex-grow: 1; /* Allow description to take available space */
    }

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

    .page-18-win__promotion-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-color);
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-18-win__promotion-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background-color: #000;
    }

    .page-18-win__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-18-win__promotion-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-18-win__promotion-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-18-win__promotion-description {
      font-size: 0.95em;
      color: var(--text-light);
      margin-bottom: 15px;
    }

    /* Payment Methods & Game Providers */
    .page-18-win__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-18-win__logo-item {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Fixed height for logos */
      width: 100%;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

    .page-18-win__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(80%) brightness(1.2); /* Subtle effect, not changing color */
      transition: filter 0.3s ease;
      box-sizing: border-box;
    }

    .page-18-win__logo-item:hover .page-18-win__logo-image {
      filter: grayscale(0%) brightness(1);
    }

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

    .page-18-win__feature-item {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-18-win__feature-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-18-win__feature-description {
      font-size: 1em;
      color: var(--text-light);
    }

    /* FAQ Section */
    .page-18-win__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-18-win__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-18-win__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-18-win__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--accent-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-18-win__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-18-win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

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

    .page-18-win__faq-item.active .page-18-win__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Call to Action */
    .page-18-win__cta-section {
      background-color: var(--primary-color);
      padding: 50px 20px;
      text-align: center;
      color: var(--text-light);
      border-radius: 10px;
      margin: 40px auto;
      max-width: 800px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .page-18-win__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      font-weight: bold;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-18-win__hero-title {
        font-size: 2.5em;
      }
      .page-18-win__hero-description {
        font-size: 1.1em;
      }
      .page-18-win__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-18-win__hero-section {
        height: 70vh;
      }
      .page-18-win__hero-title {
        font-size: 2em;
      }
      .page-18-win__hero-description {
        font-size: 1em;
      }
      .page-18-win__section {
        padding: 30px 15px;
      }
      .page-18-win__section-title {
        font-size: 1.8em;
      }
      .page-18-win__button {
        padding: 10px 20px;
        font-size: 1em;
        width: 48%; /* Adjust for smaller screens */
      }
      .page-18-win__game-grid,
      .page-18-win__promotion-list,
      .page-18-win__feature-list {
        grid-template-columns: 1fr; /* Stack items */
      }
      .page-18-win__game-card-image-wrapper,
      .page-18-win__promotion-image-wrapper {
        height: 150px;
      }
      .page-18-win__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-18-win__logo-item {
        height: 70px;
        padding: 10px;
      }
      .page-18-win__faq-question {
        padding: 12px 15px;
      }
      .page-18-win__faq-question h3 {
        font-size: 1em;
      }
      .page-18-win__faq-toggle {
        font-size: 1.5em;
      }
      .page-18-win__faq-answer {
        padding: 15px 15px;
      }
      .page-18-win__faq-item.active .page-18-win__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
      .page-18-win__cta-title {
        font-size: 1.8em;
      }
      .page-18-win__cta-description {
        font-size: 1em;
      }

      /* List item specific responsive styles */
      .page-18-win__game-card,
      .page-18-win__promotion-card,
      .page-18-win__feature-item,
      .page-18-win__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-18-win__game-grid,
      .page-18-win__promotion-list,
      .page-18-win__feature-list,
      .page-18-win__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-18-win__game-card-description,
      .page-18-win__promotion-description,
      .page-18-win__feature-description,
      .page-18-win__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive adjustments */
      .page-18-win__hero-background,
      .page-18-win__game-card-image,
      .page-18-win__promotion-image,
      .page-18-win__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-18-win__game-card-image-wrapper,
      .page-18-win__promotion-image-wrapper,
      .page-18-win__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-18-win__hero-title {
        font-size: 1.8em;
      }
      .page-18-win__hero-description {
        font-size: 0.9em;
      }
      .page-18-win__section-title {
        font-size: 1.5em;
      }
      .page-18-win__button {
        width: 45%; /* Keep spacing */
        font-size: 0.9em;
        padding: 10px 15px;
      }
      .page-18-win__cta-title {
        font-size: 1.5em;
      }
      .page-18-win__cta-description {
        font-size: 0.9em;
      }
      .page-18-win__logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for very small screens */
      }
    }
  