
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #333;
      --accent-color: #f7b731; /* Gold/yellow for accents */
      --text-color-light: #f0f0f0;
      --text-color-dark: #1a1a1a;
      --background-dark: #121212;
      --background-light: #f9f9f9;
      --border-color: #444;
      --border-radius: 8px;
    }

    /* Base styles for the page, ensuring good contrast */
    .page-68win10 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      overflow-x: hidden; /* Prevent horizontal scroll */
      padding-top: 10px; /* Small decorative padding, relying on body padding-top for header offset */
    }

    /* Hero Section */
    .page-68win10__hero-section {
      background: linear-gradient(135deg, var(--background-dark), var(--secondary-color));
      padding: 40px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-68win10__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      margin-bottom: 20px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      display: block; /* Ensure image is block level for centering */
      margin-left: auto;
      margin-right: auto;
    }

    .page-68win10__hero-title {
      font-size: 2.8em;
      color: var(--accent-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .page-68win10__hero-subtitle {
      font-size: 1.4em;
      color: var(--text-color-light);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-68win10__promotion-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-68win10__promotion-button:hover {
      background-color: #ff6633;
      transform: translateY(-3px);
    }

    /* Section Styles */
    .page-68win10__section {
      padding: 40px 20px;
      text-align: center;
      background-color: var(--background-dark);
      color: var(--text-color-light);
      border-bottom: 1px solid var(--border-color);
    }

    .page-68win10__section:nth-of-type(even) {
      background-color: var(--secondary-color);
    }

    .page-68win10__section-title {
      font-size: 2.2em;
      color: var(--accent-color);
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

    .page-68win10__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-68win10__section-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 40px;
      color: var(--text-color-light);
    }

    /* Game Categories */
    .page-68win10__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-68win10__game-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-68win10__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-68win10__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-color);
    }

    .page-68win10__game-title {
      font-size: 1.5em;
      color: var(--accent-color);
      padding: 15px 10px 5px;
      margin: 0;
    }

    .page-68win10__game-description {
      font-size: 0.95em;
      color: var(--text-color-light);
      padding: 0 15px 15px;
      flex-grow: 1;
    }

    .page-68win10__game-button {
      display: block;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 12px 10px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: 100%;
      box-sizing: border-box;
    }

    .page-68win10__game-button:hover {
      background-color: #ff6633;
    }

    /* Promotions Section */
    .page-68win10__promo-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      list-style: none; /* Remove default list styling */
      padding: 0; /* Remove default padding */
    }

    .page-68win10__promo-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: var(--border-radius);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      padding: 25px;
      text-align: left;
      flex: 1 1 calc(33% - 50px); /* Three items per row on desktop */
      min-width: 280px; /* Ensure minimum width */
      box-sizing: border-box; /* Crucial for responsive lists */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-68win10__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-68win10__promo-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

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

    .page-68win10__promo-date {
      font-size: 0.9em;
      color: var(--accent-color);
      font-style: italic;
    }

    /* About Section */
    .page-68win10__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-68win10__about-text {
      font-size: 1.1em;
      color: var(--text-color-light);
    }

    /* FAQ Section */
    .page-68win10__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

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

    .page-68win10__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--secondary-color);
      color: var(--text-color-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-68win10__faq-question:hover {
      background-color: #444;
    }

    .page-68win10__faq-question h3 {
      margin: 0;
      color: var(--text-color-light); /* Ensure h3 color is consistent */
      pointer-events: none; /* Prevent h3 from intercepting click */
      flex-grow: 1;
    }

    .page-68win10__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      pointer-events: none; /* Prevent toggle from intercepting click */
      transition: transform 0.3s ease;
    }

    .page-68win10__faq-item.active .page-68win10__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, for '-' simply change text */
    }

    .page-68win10__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: var(--text-color-light);
      background-color: var(--background-dark);
      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: 1em;
      text-align: left;
    }

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

    /* Call to Action */
    .page-68win10__cta-section {
      background-color: var(--primary-color);
      padding: 50px 20px;
      text-align: center;
      color: var(--text-color-light);
    }

    .page-68win10__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--text-color-light);
    }

    .page-68win10__cta-description {
      font-size: 1.2em;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-68win10__hero-title {
        font-size: 2.2em;
      }

      .page-68win10__hero-subtitle {
        font-size: 1.2em;
      }

      .page-68win10__section-title {
        font-size: 1.8em;
      }

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

      .page-68win10__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-68win10__promo-list {
        flex-direction: column; /* Stack promotions on mobile */
      }

      .page-68win10__promo-item {
        flex: 1 1 100%; /* Full width for each item */
        width: 100% !important; /* Ensure full width */
        max-width: 100% !important; /* Ensure full width */
        box-sizing: border-box !important; /* Critical for list items */
        padding: 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-68win10__promo-description,
      .page-68win10__promo-date {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-68win10__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-68win10__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }
      
      .page-68win10__faq-item.active .page-68win10__faq-answer {
        padding: 15px !important; /* Expanded padding for mobile */
      }

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

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

      /* Ensure all images are responsive */
      .page-68win10 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-68win10__game-image {
        height: 180px; /* Adjust image height for smaller screens */
      }
    }

    @media (max-width: 480px) {
      .page-68win10__hero-title {
        font-size: 1.8em;
      }
      .page-68win10__hero-subtitle {
        font-size: 1em;
      }
      .page-68win10__promotion-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-68win10__section {
        padding: 30px 15px;
      }
      .page-68win10__section-title {
        font-size: 1.6em;
      }
      .page-68win10__game-card {
        min-width: unset; /* Allow cards to shrink more if needed */
      }
      .page-68win10__cta-title {
        font-size: 1.8em;
      }
      .page-68win10__cta-description {
        font-size: 0.9em;
      }
    }
  