
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #e60000; /* Red */
      --text-color: #ffffff; /* White */
      --background-dark: #1a1a1a; /* Very Dark Grey */
      --background-light: #2a2a2a; /* Darker Grey */
      --border-color: #555555;
      --button-bg: var(--primary-color);
      --button-text: var(--secondary-color);
      --input-bg: #444444;
      --input-text: var(--text-color);
      --shadow-color: rgba(0, 0, 0, 0.5);
    }

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

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

    .page-8k8-com-log-in__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

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

    /* Hero Section */
    .page-8k8-com-log-in__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,login,philippines,online_casino]') no-repeat center center/cover;
      padding: 80px 20px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 500px;
      position: relative;
      margin-bottom: 20px;
      padding-top: 10px; /* Small decorative top padding as body already handles header offset */
    }

    .page-8k8-com-log-in__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px var(--shadow-color);
      line-height: 1.2;
    }

    .page-8k8-com-log-in__hero-description {
      font-size: 1.4em;
      color: var(--text-color);
      max-width: 800px;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px var(--shadow-color);
    }

    /* Login Form Section */
    .page-8k8-com-log-in__login-form-section {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 40px;
      margin: 40px auto;
      max-width: 500px;
      box-shadow: 0 5px 15px var(--shadow-color);
    }

    .page-8k8-com-log-in__login-form-title {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 30px;
    }

    .page-8k8-com-log-in__form-group {
      margin-bottom: 20px;
      text-align: left;
    }

    .page-8k8-com-log-in__form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: var(--text-color);
    }

    .page-8k8-com-log-in__form-input {
      width: calc(100% - 20px);
      padding: 12px 10px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      background-color: var(--input-bg);
      color: var(--input-text);
      font-size: 1em;
    }

    .page-8k8-com-log-in__form-input::placeholder {
      color: #aaa;
    }

    .page-8k8-com-log-in__form-button {
      width: 100%;
      padding: 15px;
      background-color: var(--button-bg);
      color: var(--button-text);
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      margin-top: 20px;
    }

    .page-8k8-com-log-in__form-button:hover {
      background-color: #ffdd44;
    }

    .page-8k8-com-log-in__form-link-group {
      margin-top: 20px;
      display: flex;
      justify-content: space-between;
      font-size: 0.9em;
    }

    .page-8k8-com-log-in__form-text-link {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-8k8-com-log-in__form-text-link:hover {
      color: #ffdd44;
    }

    /* Benefits Section */
    .page-8k8-com-log-in__benefits-section {
      background-color: var(--background-dark);
      padding: 60px 20px;
    }

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

    .page-8k8-com-log-in__benefit-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px var(--shadow-color);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%; /* Ensure cards are same height */
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-log-in__benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-log-in__benefit-icon {
      width: 80px; /* Min size 200x200 for actual images, but this is an icon placeholder */
      height: 80px; /* This will be replaced by a larger image */
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
      display: block; /* To center with margin auto */
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-log-in__benefit-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-log-in__benefit-description {
      font-size: 1em;
      color: var(--text-color);
      flex-grow: 1; /* Push content to bottom */
    }

    /* Security Section */
    .page-8k8-com-log-in__security-section {
      background-color: var(--background-light);
      padding: 60px 20px;
    }

    .page-8k8-com-log-in__security-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-log-in__security-image-wrapper {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: 10px;
    }

    .page-8k8-com-log-in__security-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    .page-8k8-com-log-in__security-text {
      flex: 2;
    }

    .page-8k8-com-log-in__security-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      gap: 15px;
    }

    .page-8k8-com-log-in__security-list-item {
      background-color: var(--input-bg);
      padding: 15px 20px;
      border-left: 5px solid var(--primary-color);
      border-radius: 5px;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-log-in__security-list-item::before {
      content: '✓';
      color: var(--primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    /* FAQ Section */
    .page-8k8-com-log-in__faq-section {
      background-color: var(--background-dark);
      padding: 60px 20px;
    }

    .page-8k8-com-log-in__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

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

    .page-8k8-com-log-in__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: var(--background-light);
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-log-in__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1em; /* Adjust to match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-log-in__faq-question:hover {
      background-color: #3a3a3a;
    }

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

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

    .page-8k8-com-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

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

      .page-8k8-com-log-in__hero-description {
        font-size: 1.1em;
      }

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

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

      .page-8k8-com-log-in__benefits-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-log-in__benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-log-in__security-content {
        flex-direction: column;
      }

      .page-8k8-com-log-in__security-image-wrapper {
        min-width: unset;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-log-in__security-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-log-in__security-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-size: 1em;
      }

      .page-8k8-com-log-in__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8-com-log-in__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

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

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

      .page-8k8-com-log-in__login-form-section {
        padding: 30px;
      }

      .page-8k8-com-log-in__form-link-group {
        flex-direction: column;
        gap: 10px;
      }
    }
  