
    /* Base styles for the page-specific content */
    .page-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-8k8-com-login__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,login,neon,lights]') center center / cover no-repeat;
      padding: 80px 20px;
      text-align: center;
      padding-top: 10px; /* Small decorative top padding as body already has header offset */
    }

    .page-8k8-com-login__hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .page-8k8-com-login__hero-title {
      font-size: 3.5em;
      color: #ffd700;
      margin-bottom: 20px;
      text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-com-login__hero-subtitle {
      font-size: 1.4em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary action */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-login__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-3px);
    }

    .page-8k8-com-login__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login__section--dark {
      background-color: #222222;
    }

    .page-8k8-com-login__section-title {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 30px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    .page-8k8-com-login__section-description {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-login__feature-card {
      background-color: #333333;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-login__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login__feature-icon {
      width: 80px; /* Min size 200x200px for content images, this is a conceptual icon holder */
      height: 80px;
      margin-bottom: 20px;
      background-color: #ffd700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;
      color: #1a1a1a;
      margin-left: auto;
      margin-right: auto;
      overflow: hidden; /* Ensure image fits */
    }
    .page-8k8-com-login__feature-icon img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-com-login__feature-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-8k8-com-login__feature-description {
      color: #b0b0b0;
      font-size: 1em;
    }

    .page-8k8-com-login__image-container {
      margin-top: 40px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-login__image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-8k8-com-login__image-container:hover .page-8k8-com-login__image {
      transform: scale(1.03);
    }

    /* FAQ Section Styles */
    .page-8k8-com-login__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      background-color: #1a1a1a;
    }

    .page-8k8-com-login__faq-title {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 40px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    .page-8k8-com-login__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .page-8k8-com-login__faq-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-login__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-8k8-com-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffd700;
      pointer-events: none; /* Prevent click event on text */
    }

    .page-8k8-com-login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffd700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click event on icon */
    }

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #b0b0b0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-login__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__faq-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login__hero-section {
        padding: 60px 20px;
      }
      .page-8k8-com-login__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-login__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login__section {
        padding: 40px 15px;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__faq-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__section-description {
        font-size: 0.95em;
      }
      .page-8k8-com-login__features-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com-login__feature-card {
        padding: 25px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login__feature-title {
        font-size: 1.3em;
      }
      .page-8k8-com-login__feature-description {
        font-size: 0.9em;
      }
      .page-8k8-com-login__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if needed */
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden !important;
      }
      .page-8k8-com-login__image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        word-wrap: break-word !important; /* Ensure text breaks in image alt if it was visible */
        overflow-wrap: break-word !important;
      }
      .page-8k8-com-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-login__faq-answer {
        font-size: 0.9em;
        padding: 15px !important; /* Reduce padding for smaller screens */
      }
      .page-8k8-com-login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-login__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-com-login__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__faq-title {
        font-size: 1.5em;
      }
    }
  