
    /* CSS Styles for page-68win-ap */
    :root {
      --primary-color: #e44d26; /* A vibrant color for betting site, e.g., orange/red */
      --secondary-color: #ff9800; /* Lighter orange */
      --accent-color: #4CAF50; /* Green for success/call to action */
      --text-dark: #333;
      --text-light: #fff;
      --bg-dark: #1a1a1a;
      --bg-light: #f5f5f5;
      --bg-card: #2c2c2c;
      --border-color: #555;
      --shadow-color: rgba(0, 0, 0, 0.2);
    }

    .page-68win-ap {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--bg-light);
      padding-top: 10px; /* Decorative padding, as body handles header offset */
    }

    .page-68win-ap__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-68win-ap__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--bg-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px var(--shadow-color);
    }

    .page-68win-ap__section--dark {
      background-color: var(--bg-dark);
      color: var(--text-light);
      padding: 60px 20px;
    }

    .page-68win-ap__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-68win-ap__section-title--light {
      color: var(--text-light);
    }

    .page-68win-ap__text-center {
      text-align: center;
    }

    .page-68win-ap__hero-section {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: var(--text-light);
      text-align: center;
      padding: 80px 20px;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-68win-ap__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
    }

    .page-68win-ap__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-68win-ap__cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-68win-ap__cta-button:hover {
      background-color: #388E3C;
      transform: translateY(-2px);
    }

    .page-68win-ap__cta-button:active {
      transform: translateY(0);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-68win-ap__image-wrapper {
      text-align: center;
      margin: 40px 0;
    }

    .page-68win-ap__image-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      object-fit: cover;
    }

    .page-68win-ap__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-68win-ap__feature-card {
      background-color: var(--bg-card);
      color: var(--text-light);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px var(--shadow-color);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-68win-ap__feature-card:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-68win-ap__feature-icon {
      margin-bottom: 20px;
    }

    .page-68win-ap__feature-icon img {
      width: 80px; /* Min size 200x200, so this will be placeholder image */
      height: 80px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-68win-ap__feature-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      font-weight: bold;
      color: var(--secondary-color);
    }

    .page-68win-ap__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-68win-ap__game-card {
      background-color: var(--bg-card);
      color: var(--text-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px var(--shadow-color);
      transition: transform 0.3s ease;
    }

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

    .page-68win-ap__game-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-68win-ap__game-card-content {
      padding: 20px;
      text-align: center;
    }

    .page-68win-ap__game-card-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      font-weight: bold;
      color: var(--secondary-color);
    }

    .page-68win-ap__download-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }

    .page-68win-ap__step-item {
      display: flex;
      align-items: center;
      background-color: var(--bg-card);
      color: var(--text-light);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 4px var(--shadow-color);
    }

    .page-68win-ap__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--primary-color);
      margin-right: 20px;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
    }

    .page-68win-ap__step-content h3 {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 5px;
      color: var(--secondary-color);
    }

    .page-68win-ap__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-68win-ap__payment-item {
      text-align: center;
      background-color: var(--bg-card);
      color: var(--text-light);
      padding: 20px 10px;
      border-radius: 8px;
      box-shadow: 0 2px 4px var(--shadow-color);
      transition: transform 0.2s ease;
    }

    .page-68win-ap__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-68win-ap__payment-item img {
      width: 100px; /* Min size 200x200, placeholder will adapt */
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
    }

    .page-68win-ap__payment-item span {
      font-weight: bold;
      color: var(--text-light);
      display: block;
    }

    .page-68win-ap__faq-section {
      background-color: var(--bg-light);
      color: var(--text-dark);
    }

    .page-68win-ap__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-68win-ap__faq-item {
      background-color: var(--bg-card);
      color: var(--text-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px var(--shadow-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

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

    .page-68win-ap__faq-question:hover {
      background-color: #c43e1d; /* Darker primary on hover */
    }

    .page-68win-ap__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from intercepting click */
      flex-grow: 1;
    }

    .page-68win-ap__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
      transition: transform 0.3s ease;
    }

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

    .page-68win-ap__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* 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: var(--text-light);
      background-color: var(--bg-card);
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-68win-ap__container {
        padding: 15px;
      }

      .page-68win-ap__hero-section {
        padding: 60px 15px;
      }

      .page-68win-ap__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-68win-ap__features-grid,
      .page-68win-ap__game-categories,
      .page-68win-ap__payment-methods-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 20px;
      }

      .page-68win-ap__feature-card,
      .page-68win-ap__game-card,
      .page-68win-ap__payment-item,
      .page-68win-ap__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-68win-ap__faq-question,
      .page-68win-ap__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-68win-ap__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .page-68win-ap__step-number {
        margin-bottom: 15px;
        margin-right: 0;
      }

      .page-68win-ap__image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  