
    :root {
      --primary-color: #e60000; /* A vibrant red for branding */
      --secondary-color: #ffcc00; /* Gold for accents */
      --text-color: #f0f0f0;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #444444;
      --button-hover-color: #ff4d4d;
    }

    .page-8k8-com-login-11 {
      font-family: 'Roboto', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't define it */
    }

    .page-8k8-com-login-11__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__hero-section {
      background: linear-gradient(135deg, var(--background-dark) 0%, #0a0a0a 100%);
      padding: 60px 20px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom: 3px solid var(--primary-color);
      padding-top: 10px; /* Small top padding, relying on body for header offset */
    }

    .page-8k8-com-login-11__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: 700;
      letter-spacing: 1px;
    }

    .page-8k8-com-login-11__hero-subtitle {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-11__promo-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
    }

    .page-8k8-com-login-11__promo-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    .page-8k8-com-login-11__section {
      padding: 50px 0;
      background-color: var(--background-light);
      border-bottom: 1px solid var(--border-color);
    }

    .page-8k8-com-login-11__section:nth-of-type(even) {
      background-color: var(--background-dark);
    }

    .page-8k8-com-login-11__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .page-8k8-com-login-11__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-8k8-com-login-11__image-wrapper {
      margin: 40px 0;
      text-align: center;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-11__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }

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

    .page-8k8-com-login-11__grid-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-com-login-11__grid-item-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-com-login-11__grid-item-description {
      font-size: 1em;
      color: var(--text-color);
    }

    .page-8k8-com-login-11__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-login-11__step-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-left: 5px solid var(--primary-color);
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-8k8-com-login-11__step-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-login-11__step-description {
      font-size: 1em;
      color: var(--text-color);
    }

    .page-8k8-com-login-11__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-login-11__payment-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      width: 150px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__payment-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-login-11__payment-image {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-8k8-com-login-11__payment-name {
      font-size: 1em;
      color: var(--secondary-color);
      font-weight: 500;
    }

    .page-8k8-com-login-11__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-login-11__provider-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__provider-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-login-11__provider-image {
      max-width: 120px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-8k8-com-login-11__provider-name {
      font-size: 1.1em;
      color: var(--secondary-color);
      font-weight: 500;
    }

    .page-8k8-com-login-11__faq-section {
      background-color: var(--background-light);
      padding: 50px 0;
    }

    .page-8k8-com-login-11__faq-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: box-shadow 0.3s ease;
    }

    .page-8k8-com-login-11__faq-item:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--background-dark);
      color: var(--secondary-color);
      font-size: 1.2em;
      font-weight: 600;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login-11__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-8k8-com-login-11__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-com-login-11__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-com-login-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--background-light);
      color: var(--text-color);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-answer {
      max-height: 2000px !important; /* Use !important as per requirements */
      padding: 20px 25px !important; /* Use !important as per requirements */
      opacity: 1;
    }

    .page-8k8-com-login-11__call-to-action-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(90deg, #1a1a1a 0%, #2c2c2c 100%);
    }

    .page-8k8-com-login-11__cta-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-8k8-com-login-11__cta-description {
      font-size: 1.2em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login/Register Buttons */
    .page-8k8-com-login-11__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-com-login-11__floating-button {
      background-color: var(--secondary-color);
      color: var(--background-dark);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-com-login-11__floating-button--login {
      background-color: var(--primary-color);
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
    }

    .page-8k8-com-login-11__floating-button:hover {
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    .page-8k8-com-login-11__floating-button--login:hover {
      background-color: var(--button-hover-color);
    }

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

      .page-8k8-com-login-11__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com-login-11__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-login-11__section-title {
        font-size: 2em;
      }

      .page-8k8-com-login-11__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-login-11__text-content {
        font-size: 1em;
      }

      .page-8k8-com-login-11__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-8k8-com-login-11__steps-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-11__payment-card {
        width: calc(50% - 10px); /* Two cards per row */
        max-width: calc(50% - 10px);
      }

      .page-8k8-com-login-11__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8-com-login-11__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-login-11__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-login-11__faq-answer {
        padding: 15px 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-11__cta-title {
        font-size: 1.8em;
      }

      .page-8k8-com-login-11__cta-description {
        font-size: 1em;
      }

      .page-8k8-com-login-11__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Stack horizontally on mobile */
        gap: 8px;
      }

      .page-8k8-com-login-11__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-8k8-com-login-11__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-11__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  