
    /* Base styles for the page-scv288 */
    .page-scv288 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a; /* Dark background */
      color: #ffffff; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

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

    .page-scv288__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #2a2a2a; /* Slightly lighter dark for sections */
      border-radius: 8px;
    }

    .page-scv288__section:last-child {
      margin-bottom: 0;
    }

    .page-scv288__heading {
      color: #ffd700; /* Yellow for headings */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-scv288__subheading {
      color: #ffd700;
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .page-scv288__text {
      font-size: 1em;
      margin-bottom: 10px;
    }

    .page-scv288__button {
      display: block;
      width: fit-content;
      margin: 20px auto;
      padding: 15px 30px;
      background-color: #ffd700;
      color: #1a1a1a;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-scv288__button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-scv288__hero-section {
      text-align: center;
      padding-top: 10px; /* Default for desktop, adjusted for mobile below */
      padding-bottom: 40px;
      background-color: #1a1a1a;
    }

    .page-scv288__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-scv288__hero-title {
      font-size: 2.8em;
      color: #ffd700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-scv288__hero-description {
      font-size: 1.2em;
      color: #ffffff;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    /* Floating Login Button */
    .page-scv288__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      padding: 15px 25px;
      background-color: #e53935; /* Red for urgency */
      color: #ffffff;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      animation: page-scv288__pulse 2s infinite;
      text-decoration: none;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-scv288__floating-button:hover {
      background-color: #ef5350;
    }

    @keyframes page-scv288__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories */
    .page-scv288__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      padding: 0;
      list-style: none;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__game-item {
      background-color: #333333;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-scv288__game-image {
      width: 100%;
      height: 150px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-scv288__game-title {
      color: #ffd700;
      font-size: 1.1em;
      padding: 15px 10px;
      font-weight: bold;
    }

    /* Game Providers */
    .page-scv288__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      padding: 0;
      list-style: none;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__provider-item {
      background-color: #333333;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Fixed height for provider logos */
      box-sizing: border-box; /* Required for lists */
      padding: 10px;
    }

    .page-scv288__provider-logo {
      max-width: 90%;
      max-height: 80%;
      object-fit: contain;
      display: block;
    }

    /* Benefits/Why Choose */
    .page-scv288__benefits-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__benefit-item {
      background-color: #333333;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__benefit-icon {
      color: #ffd700;
      font-size: 1.8em;
      margin-right: 15px;
      line-height: 1;
    }

    .page-scv288__benefit-content h3 {
      color: #ffd700;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-scv288__benefit-content p {
      color: #ffffff;
      font-size: 0.95em;
    }

    /* How-to Guide */
    .page-scv288__step-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__step-item {
      background-color: #333333;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #ffd700;
      color: #1a1a1a;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      min-width: 30px;
      min-height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
      margin-right: 15px;
    }

    .page-scv288__step-content h3 {
      color: #ffd700;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-scv288__step-content p {
      color: #ffffff;
      font-size: 0.95em;
    }

    /* Promotions */
    .page-scv288__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0;
      list-style: none;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__promo-card {
      background-color: #333333;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box; /* Required for lists */
    }

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

    .page-scv288__promo-icon {
      font-size: 3em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-scv288__promo-title {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-scv288__promo-description {
      color: #ffffff;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-scv288__faq-list {
      list-style: none;
      padding: 0;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__faq-item {
      background-color: #333333;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box; /* Required for lists */
    }

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

    .page-scv288__faq-question:hover {
      background-color: #555555;
    }

    .page-scv288__faq-question h3 {
      margin: 0;
      color: #ffd700;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-scv288__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent span from blocking click */
      transition: transform 0.3s ease;
    }

    .page-scv288__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #333333;
      color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

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

    /* Social Media */
    .page-scv288__social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 0;
      list-style: none;
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__social-item {
      box-sizing: border-box; /* Required for lists */
    }

    .page-scv288__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: #444444;
      color: #ffffff;
      border-radius: 50%;
      font-size: 1.8em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .page-scv288__social-link:hover {
      background-color: #ffd700;
      color: #1a1a1a;
      transform: translateY(-3px);
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-scv288__hero-section {
        padding-top: 140px; /* Safe zone for mobile fixed header */
      }

      .page-scv288__heading {
        font-size: 1.8em;
      }

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

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

      .page-scv288__section {
        padding: 30px 15px;
      }

      /* List item mobile responsiveness */
      .page-scv288__game-grid,
      .page-scv288__provider-grid,
      .page-scv288__benefits-list,
      .page-scv288__step-list,
      .page-scv288__promo-grid,
      .page-scv288__faq-list,
      .page-scv288__social-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .page-scv288__game-item,
      .page-scv288__provider-item,
      .page-scv288__benefit-item,
      .page-scv288__step-item,
      .page-scv288__promo-card,
      .page-scv288__faq-item,
      .page-scv288__social-item {
        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;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-scv288__game-image,
      .page-scv288__provider-logo,
      .page-scv288__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-scv288__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-scv288__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }

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

    @media (max-width: 480px) {
      .page-scv288__hero-title {
        font-size: 1.8em;
      }

      .page-scv288__hero-description {
        font-size: 0.9em;
      }

      .page-scv288__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-scv288__game-grid,
      .page-scv288__provider-grid,
      .page-scv288__benefits-list,
      .page-scv288__step-list,
      .page-scv288__promo-grid {
        gap: 15px;
      }
    }
  