
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red for branding */
      --secondary-color: #333;
      --accent-color: #f7b731; /* A golden yellow for highlights */
      --text-light: #f9f9f9;
      --text-dark: #333;
      --background-dark: #1a1a1a;
      --background-light: #ffffff;
      --border-color: #444;
      --button-hover-color: #ff6a00;
      --header-offset: 122px; /* Default value if not set by shared.css */
    }

    .page-8k8-bet-login {
      background-color: var(--background-dark);
      color: var(--text-light);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header offset */
    }

    .page-8k8-bet-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-bet-login__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      border-radius: 10px;
      background-color: #222;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-8k8-bet-login__section--dark {
      background-color: #1a1a1a;
    }

    .page-8k8-bet-login__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 80px 0; /* Decorative top padding, main offset handled by body/main */
      background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
      color: var(--text-light);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
    }

    .page-8k8-bet-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-8k8-bet-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
    }

    .page-8k8-bet-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--accent-color);
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-bet-login__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-light);
      opacity: 0.9;
    }

    .page-8k8-bet-login__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--primary-color);
      color: var(--text-light);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-bet-login__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-8k8-bet-login__login-guide-section {
      background-color: #2a2a2a;
      padding: 80px 20px;
    }

    .page-8k8-bet-login__heading {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      text-align: center;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-bet-login__subheading {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 25px;
      text-align: center;
    }

    .page-8k8-bet-login__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-bet-login__step-item {
      background-color: #333;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      width: calc(33% - 20px);
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 250px;
    }

    .page-8k8-bet-login__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-bet-login__step-number {
      font-size: 2.5em;
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 15px;
      background-color: #444;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-bet-login__step-title {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-bottom: 15px;
    }

    .page-8k8-bet-login__step-description {
      font-size: 1em;
      color: var(--text-light);
      opacity: 0.8;
    }

    .page-8k8-bet-login__benefits-section {
      background-color: #1a1a1a;
      padding: 80px 20px;
    }

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

    .page-8k8-bet-login__benefit-card {
      background-color: #333;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      min-height: 220px;
    }

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

    .page-8k8-bet-login__benefit-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 5px;
      object-fit: cover;
      background-color: #444; /* Placeholder background */
      padding: 10px;
      box-sizing: border-box;
    }

    .page-8k8-bet-login__benefit-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-bet-login__benefit-description {
      font-size: 1em;
      color: var(--text-light);
      opacity: 0.8;
    }

    .page-8k8-bet-login__cta-section {
      background-color: #2a2a2a;
      padding: 80px 20px;
      text-align: center;
    }

    .page-8k8-bet-login__cta-title {
      font-size: 2.5em;
      color: var(--accent-color);
      margin-bottom: 20px;
    }

    .page-8k8-bet-login__cta-description {
      font-size: 1.2em;
      color: var(--text-light);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-bet-login__faq-section {
      background-color: #1a1a1a;
      padding: 80px 20px;
    }

    .page-8k8-bet-login__faq-list {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-8k8-bet-login__faq-item {
      background-color: #333;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-bet-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #444;
      color: var(--text-light);
      transition: background-color 0.3s ease;
    }

    .page-8k8-bet-login__faq-question:hover {
      background-color: #555;
    }

    .page-8k8-bet-login__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--accent-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-bet-login__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-bet-login__faq-item.active .page-8k8-bet-login__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-8k8-bet-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: var(--text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #333;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-bet-login__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-bet-login__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-bet-login__heading {
        font-size: 2em;
      }
      .page-8k8-bet-login__step-item {
        width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-bet-login {
        padding-top: var(--header-offset, 122px) !important; /* Ensure header offset on mobile */
      }
      .page-8k8-bet-login__hero-section {
        min-height: 350px;
        padding-bottom: 60px;
      }
      .page-8k8-bet-login__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-bet-login__hero-description {
        font-size: 1em;
      }
      .page-8k8-bet-login__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-bet-login__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-bet-login__subheading {
        font-size: 1.5em;
        margin-bottom: 20px;
      }
      .page-8k8-bet-login__step-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-bet-login__steps-list {
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-8k8-bet-login__step-number {
        font-size: 2em;
        width: 60px;
        height: 60px;
      }
      .page-8k8-bet-login__step-title {
        font-size: 1.3em;
      }
      .page-8k8-bet-login__benefit-card {
        padding: 25px;
        min-height: 180px;
      }
      .page-8k8-bet-login__benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
      }
      .page-8k8-bet-login__benefit-title {
        font-size: 1.4em;
      }
      .page-8k8-bet-login__cta-title {
        font-size: 2em;
      }
      .page-8k8-bet-login__cta-description {
        font-size: 1em;
      }
      .page-8k8-bet-login__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-bet-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-bet-login__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-bet-login__faq-item.active .page-8k8-bet-login__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-bet-login__faq-toggle {
        font-size: 1.5em;
        width: 25px;
        height: 25px;
      }
      .page-8k8-bet-login__section {
        padding: 40px 15px;
      }
      /* Image responsive adjustments */
      .page-8k8-bet-login__hero-background,
      .page-8k8-bet-login__benefit-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-bet-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-bet-login__heading {
        font-size: 1.6em;
      }
      .page-8k8-bet-login__subheading {
        font-size: 1.3em;
      }
      .page-8k8-bet-login__section {
        padding: 30px 10px;
      }
    }
  