
    /* Page-specific CSS for 8k8 Log In */
    :root {
      --primary-color: #e44d26; /* A vibrant orange/red, common in gaming sites */
      --secondary-color: #333;
      --accent-color: #ffcc00; /* Gold/yellow for highlights */
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --text-color-light: #f0f0f0;
      --text-color-dark: #333;
      --border-radius-sm: 8px;
      --border-radius-md: 12px;
      --padding-section: 40px 20px;
      --max-width-content: 1200px;
    }

    .page-8k8-log-in {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

    .page-8k8-log-in__container {
      max-width: var(--max-width-content);
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-8k8-log-in__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,casino,login,8k8]') center center / cover no-repeat;
      padding: 80px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      border-radius: var(--border-radius-md);
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-log-in__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-8k8-log-in__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-log-in__hero-title {
      font-size: 2.8em;
      color: var(--accent-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-8k8-log-in__hero-subtitle {
      font-size: 1.3em;
      color: var(--text-color-light);
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-log-in__cta-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;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      margin: 10px;
    }

    .page-8k8-log-in__cta-button:hover {
      background-color: #ff6633;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-8k8-log-in__section {
      background-color: var(--background-light);
      padding: var(--padding-section);
      margin-bottom: 30px;
      border-radius: var(--border-radius-md);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-log-in__section-dark {
      background-color: var(--background-dark);
      padding: var(--padding-section);
      margin-bottom: 30px;
      border-radius: var(--border-radius-md);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-log-in__section-title {
      font-size: 2em;
      color: var(--accent-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-log-in__section-subtitle {
      font-size: 1.2em;
      color: var(--text-color-light);
      text-align: center;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Features Grid */
    .page-8k8-log-in__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-log-in__feature-item {
      background-color: var(--background-dark);
      padding: 25px;
      border-radius: var(--border-radius-sm);
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-8k8-log-in__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-log-in__feature-icon {
      width: 100px; /* Min size 200x200, but styling for layout purposes */
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: var(--primary-color);
      padding: 15px;
    }
    .page-8k8-log-in__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
    }


    .page-8k8-log-in__feature-title {
      font-size: 1.4em;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-log-in__feature-description {
      color: var(--text-color-light);
      font-size: 0.95em;
    }

    /* Steps/Process Section */
    .page-8k8-log-in__steps-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-log-in__step-item {
      background-color: var(--background-dark);
      padding: 25px;
      border-radius: var(--border-radius-sm);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
      width: 100%; /* Ensure it takes full width initially */
      max-width: 100%; /* Ensure it takes full width initially */
      margin-left: 0;
      margin-right: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-log-in__step-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-log-in__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--primary-color);
      flex-shrink: 0;
      line-height: 1;
    }

    .page-8k8-log-in__step-content h3 {
      font-size: 1.3em;
      color: var(--accent-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-log-in__step-content p {
      color: var(--text-color-light);
      margin-bottom: 0;
    }

    /* Promotions Section */
    .page-8k8-log-in__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-log-in__promo-card {
      background-color: var(--background-dark);
      border-radius: var(--border-radius-sm);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-log-in__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-log-in__promo-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-8k8-log-in__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8k8-log-in__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-log-in__promo-title {
      font-size: 1.3em;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-log-in__promo-description {
      font-size: 0.95em;
      color: var(--text-color-light);
      margin-bottom: 15px;
    }

    .page-8k8-log-in__promo-button {
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      align-self: flex-start;
    }

    .page-8k8-log-in__promo-button:hover {
      background-color: #ff6633;
    }

    /* FAQ Section */
    .page-8k8-log-in__faq-section {
      background-color: var(--background-light);
      padding: var(--padding-section);
      margin-bottom: 30px;
      border-radius: var(--border-radius-md);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-log-in__faq-item {
      background-color: var(--background-dark);
      margin-bottom: 15px;
      border-radius: var(--border-radius-sm);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-log-in__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-log-in__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--accent-color);
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-log-in__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-log-in__faq-item.active .page-8k8-log-in__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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-color-light);
    }

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

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

      .page-8k8-log-in__hero-subtitle {
        font-size: 1em;
      }

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

      .page-8k8-log-in__section-title {
        font-size: 1.8em;
      }

      .page-8k8-log-in__section-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-log-in__features-grid,
      .page-8k8-log-in__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-log-in__feature-item,
      .page-8k8-log-in__promo-card {
        margin: 0 auto;
        max-width: 95%; /* Constrain width for smaller screens */
        box-sizing: border-box !important;
      }

      .page-8k8-log-in__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-log-in__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-log-in__step-content h3 {
        font-size: 1.2em;
      }

      .page-8k8-log-in__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-log-in__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-log-in__faq-answer {
        padding: 15px !important;
      }

      .page-8k8-log-in__promo-image-wrapper {
        height: 180px;
      }

      /* Image responsive adjustments */
      .page-8k8-log-in img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-log-in__promo-image,
      .page-8k8-log-in__feature-icon img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-log-in__promo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-log-in__hero-section {
        padding: 60px 15px;
        min-height: 400px;
      }

      .page-8k8-log-in__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-log-in__hero-subtitle {
        font-size: 0.9em;
      }

      .page-8k8-log-in__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-8k8-log-in__section-title {
        font-size: 1.6em;
      }

      .page-8k8-log-in__section-subtitle {
        font-size: 1em;
      }

      .page-8k8-log-in__container {
        padding: 0 15px;
      }
    }
  