
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #ff8c00; /* Another vibrant color */
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --text-light: #f0f0f0;
      --text-dark: #333;
      --border-color: #444;
      --button-bg: #e44d26;
      --button-text: #ffffff;
      --header-offset: 122px; /* Default offset, will be overridden by shared.css */
    }

    /* Base styles for the page-68win1 scope */
    .page-68win1 {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-68win1__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    .page-68win1__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-68win1__section--dark {
      background-color: var(--background-light);
    }

    .page-68win1__heading {
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
    }

    .page-68win1__subheading {
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-68win1__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--text-light);
    }

    /* Hero Section */
    .page-68win1__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Small top padding, main padding comes from body offset */
      background-color: var(--background-dark);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      text-align: center;
    }

    .page-68win1__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.5); /* Allowed for background effect */
      max-width: 100%; height: auto; /* Responsive image */
    }

    .page-68win1__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      color: var(--text-light);
    }

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

    .page-68win1__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-68win1__hero-cta {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--secondary-color);
      color: var(--button-text);
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-decoration: none; /* Ensure no underline */
      cursor: pointer;
      border: none;
    }

    .page-68win1__hero-cta:hover {
      background-color: #ff6a00;
    }

    /* Floating Buttons */
    .page-68win1__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-68win1__floating-button {
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      color: var(--button-text);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-68win1__floating-button--register {
      background-color: var(--primary-color);
    }

    .page-68win1__floating-button--register:hover {
      background-color: #c7401f;
      transform: translateY(-2px);
    }

    .page-68win1__floating-button--login {
      background-color: var(--secondary-color);
    }

    .page-68win1__floating-button--login:hover {
      background-color: #ff6a00;
      transform: translateY(-2px);
    }

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

    .page-68win1__promotion-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-68win1__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-68win1__promotion-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; height: auto; /* Responsive image */
    }

    .page-68win1__promotion-card-content {
      padding: 20px;
    }

    .page-68win1__promotion-card-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-68win1__promotion-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-68win1__promotion-card-button {
      display: inline-block;
      padding: 8px 18px;
      background-color: var(--secondary-color);
      color: var(--button-text);
      border-radius: 5px;
      font-size: 0.9em;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border: none;
    }

    .page-68win1__promotion-card-button:hover {
      background-color: #ff6a00;
    }

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

    .page-68win1__game-category-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 220px; /* Ensure cards have similar height */
    }

    .page-68win1__game-category-card:hover {
      transform: translateY(-5px);
    }

    .page-68win1__game-category-image {
      width: 120px; /* Adjust size for category icons */
      height: 120px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%; height: auto; /* Responsive image */
    }

    .page-68win1__game-category-title {
      font-size: 1.2em;
      color: var(--primary-color);
      font-weight: bold;
    }

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

    .page-68win1__feature-item {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-68win1__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; height: auto; /* Responsive image */
    }

    .page-68win1__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-68win1__feature-description {
      font-size: 1em;
      color: #ccc;
    }

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

    .page-68win1__logo-item {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-68win1__logo-image {
      max-width: 100px;
      max-height: 50px;
      object-fit: contain;
      max-width: 100%; height: auto; /* Responsive image */
    }

    /* FAQ Section */
    .page-68win1__faq-list {
      margin-top: 30px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-68win1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--background-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: var(--text-light);
      border-bottom: 1px solid var(--border-color);
    }

    .page-68win1__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-68win1__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-68win1__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: #ccc;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-68win1__container {
        padding: 15px 10px;
      }

      .page-68win1__section {
        padding: 30px 0;
      }

      .page-68win1__heading {
        font-size: 2em;
      }

      .page-68win1__subheading {
        font-size: 1.5em;
      }

      .page-68win1__hero-title {
        font-size: 2.2em;
      }

      .page-68win1__hero-description {
        font-size: 1em;
      }

      .page-68win1__hero-cta,
      .page-68win1__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-68win1__floating-buttons {
        bottom: 10px;
        gap: 10px;
      }

      .page-68win1__promotions-grid,
      .page-68win1__game-categories-grid,
      .page-68win1__features-grid,
      .page-68win1__logos-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 20px;
      }

      /* List item responsive requirements */
      .page-68win1__promotions-grid > *,
      .page-68win1__game-categories-grid > *,
      .page-68win1__features-grid > *,
      .page-68win1__logos-grid > * {
        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;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-68win1__promotions-grid,
      .page-68win1__game-categories-grid,
      .page-68win1__features-grid,
      .page-68win1__logos-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if parent has padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-68win1__promotion-card-image,
      .page-68win1__game-category-image,
      .page-68win1__feature-icon,
      .page-68win1__logo-image {
        max-width: 100%; height: auto; /* Force responsive for all images */
      }
      
      .page-68win1__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-68win1__faq-question h3 {
        font-size: 1em;
      }
      .page-68win1__faq-answer {
        padding: 15px 15px !important; /* Adjust mobile padding */
      }
    }

    @media (max-width: 480px) {
      .page-68win1__hero-title {
        font-size: 1.8em;
      }
      .page-68win1__hero-description {
        font-size: 0.9em;
      }
      .page-68win1__floating-buttons {
        flex-direction: column;
        width: 90%;
        left: 5%;
        transform: translateX(0);
      }
      .page-68win1__floating-button {
        width: 100%;
      }
    }
  