
    /* Base styles for the page, scoped to .page-8k8-vip-login */
    .page-8k8-vip-login {
      font-family: 'Roboto', sans-serif; /* Using a common sans-serif font */
      color: #333333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Hero Section */
    .page-8k8-vip-login__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,vip,login,gaming]') no-repeat center center/cover;
      color: #ffffff;
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
      padding-top: 10px; /* Decorative padding, assuming body already has header offset */
    }

    .page-8k8-vip-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #FFD700; /* Gold color for prominence */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-vip-login__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-8k8-vip-login__hero-button {
      display: inline-block;
      background-color: #DAA520; /* Goldenrod */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-vip-login__hero-button:hover {
      background-color: #B8860B; /* DarkGoldenrod */
    }

    /* General Section Styling */
    .page-8k8-vip-login__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-vip-login__section:nth-of-type(even) {
      background-color: #ededed;
    }

    .page-8k8-vip-login__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-8k8-vip-login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #DAA520;
      border-radius: 2px;
    }

    /* Content Area Layout */
    .page-8k8-vip-login__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: flex-start;
    }

    .page-8k8-vip-login__text-block {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
    }

    .page-8k8-vip-login__image-block {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      text-align: center;
    }

    .page-8k8-vip-login__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-8k8-vip-login__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-8k8-vip-login__list-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      padding: 15px 20px;
      border-left: 5px solid #DAA520;
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      font-size: 1.05em;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-vip-login__list-item strong {
      color: #1a1a1a;
    }

    /* Promotions Grid */
    .page-8k8-vip-login__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-vip-login__promo-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-8k8-vip-login__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-vip-login__promo-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-8k8-vip-login__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-8k8-vip-login__promo-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-vip-login__promo-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-8k8-vip-login__promo-description {
      font-size: 0.95em;
      color: #555555;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-8k8-vip-login__promo-button {
      display: inline-block;
      background-color: #DAA520;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-vip-login__promo-button:hover {
      background-color: #B8860B;
    }

    /* FAQ Section */
    .page-8k8-vip-login__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-vip-login__faq-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-8k8-vip-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-vip-login__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-8k8-vip-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a1a1a;
      pointer-events: none; /* Crucial for click handler on parent */
    }

    .page-8k8-vip-login__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #DAA520;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handler on parent */
    }

    .page-8k8-vip-login__faq-item.active .page-8k8-vip-login__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
      color: #B8860B;
    }

    .page-8k8-vip-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding for closed state */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555555;
      font-size: 1em;
      background-color: #ffffff;
    }

    .page-8k8-vip-login__faq-item.active .page-8k8-vip-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Adjust padding for open state */
      opacity: 1;
    }

    /* Final CTA Section */
    .page-8k8-vip-login__cta-section {
      background-color: #333333;
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
    }

    .page-8k8-vip-login__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #FFD700;
    }

    .page-8k8-vip-login__cta-description {
      font-size: 1.1em;
      max-width: 700px;
      margin: 0 auto 30px auto;
      color: #f0f0f0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-vip-login__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-vip-login__hero-description {
        font-size: 1em;
      }

      .page-8k8-vip-login__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-vip-login__section-title {
        font-size: 2em;
      }

      .page-8k8-vip-login__content-wrapper {
        flex-direction: column;
        gap: 20px;
      }

      .page-8k8-vip-login__text-block,
      .page-8k8-vip-login__image-block {
        max-width: 100%;
      }

      .page-8k8-vip-login__list {
        padding: 0 !important; /* Ensure no default padding from ul */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-vip-login__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important; /* Adjusted padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-vip-login__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-vip-login__promo-image-container {
        height: 180px;
      }

      .page-8k8-vip-login__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-vip-login__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-vip-login__faq-answer {
        padding: 0 20px; /* Adjust padding for closed state */
      }

      .page-8k8-vip-login__faq-item.active .page-8k8-vip-login__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for open state */
      }

      .page-8k8-vip-login__cta-title {
        font-size: 1.8em;
      }

      .page-8k8-vip-login__cta-description {
        font-size: 1em;
      }

      /* Image responsiveness */
      .page-8k8-vip-login__image,
      .page-8k8-vip-login__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-vip-login__image-block,
      .page-8k8-vip-login__promo-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-vip-login__hero-title {
        font-size: 2em;
      }

      .page-8k8-vip-login__section-title {
        font-size: 1.8em;
      }
    }
  