
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #f7b731; /* Complementary color */
      --text-color: #333;
      --light-text-color: #f0f0f0;
      --bg-dark: #1a1a1a;
      --bg-light: #ffffff;
      --border-color: #ddd;
    }

    .page-fb777-com-log-in {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-light);
      padding-top: 10px; /* Small padding for visual separation from header */
    }

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

    .page-fb777-com-log-in__section--dark {
      background-color: var(--bg-dark);
      color: var(--light-text-color);
    }

    .page-fb777-com-log-in__section--dark h1,
    .page-fb777-com-log-in__section--dark h2,
    .page-fb777-com-log-in__section--dark h3,
    .page-fb777-com-log-in__section--dark p,
    .page-fb777-com-log-in__section--dark li {
      color: var(--light-text-color);
    }

    .page-fb777-com-log-in__hero-section {
      background: linear-gradient(135deg, var(--bg-dark) 0%, #333 100%);
      color: var(--light-text-color);
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-fb777-com-log-in__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric]');
      background-size: cover;
      background-position: center;
      opacity: 0.1;
      z-index: 0;
    }

    .page-fb777-com-log-in__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-fb777-com-log-in__hero-section h1 {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-fb777-com-log-in__hero-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-fb777-com-log-in__cta-button:hover {
      background-color: #ff6633;
      transform: translateY(-2px);
    }

    .page-fb777-com-log-in__cta-button:active {
      transform: translateY(0);
    }

    .page-fb777-com-log-in__image-container {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .page-fb777-com-log-in__image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-fb777-com-log-in__image:hover {
      transform: scale(1.02);
    }

    .page-fb777-com-log-in__list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-fb777-com-log-in__list-item {
      background-color: var(--bg-light);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-fb777-com-log-in__list-item--dark {
      background-color: #2a2a2a;
      color: var(--light-text-color);
    }

    .page-fb777-com-log-in__list-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-fb777-com-log-in__list-item h3 {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 1.4em;
    }

    .page-fb777-com-log-in__list-item p {
      color: var(--text-color);
    }

    .page-fb777-com-log-in__list-item--dark p {
      color: var(--light-text-color);
    }

    .page-fb777-com-log-in__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
      counter-reset: step-counter;
    }

    .page-fb777-com-log-in__step-item {
      background-color: var(--bg-light);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-fb777-com-log-in__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: var(--secondary-color);
      color: var(--bg-dark);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
    }

    .page-fb777-com-log-in__step-item h3 {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 5px;
      font-size: 1.3em;
    }

    .page-fb777-com-log-in__payment-grid,
    .page-fb777-com-log-in__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-fb777-com-log-in__grid-item {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-fb777-com-log-in__grid-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-fb777-com-log-in__grid-item p {
      color: var(--light-text-color);
      font-weight: bold;
      margin: 0;
    }

    /* FAQ Section Styles */
    .page-fb777-com-log-in__faq-section {
      text-align: left;
    }

    .page-fb777-com-log-in__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--bg-light);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-fb777-com-log-in__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--text-color);
      transition: background-color 0.3s ease;
    }

    .page-fb777-com-log-in__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-fb777-com-log-in__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-fb777-com-log-in__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
      color: var(--secondary-color);
    }

    .page-fb777-com-log-in__faq-item.active .page-fb777-com-log-in__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar visual */
    }

    .page-fb777-com-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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);
    }

    .page-fb777-com-log-in__faq-item.active .page-fb777-com-log-in__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-fb777-com-log-in__hero-section {
        padding: 60px 15px;
      }

      .page-fb777-com-log-in__hero-section h1 {
        font-size: 2.2em;
      }

      .page-fb777-com-log-in__hero-section p {
        font-size: 1em;
      }

      .page-fb777-com-log-in__section {
        padding: 30px 15px;
      }

      .page-fb777-com-log-in__list {
        grid-template-columns: 1fr;
      }

      .page-fb777-com-log-in__list-item,
      .page-fb777-com-log-in__step-item,
      .page-fb777-com-log-in__grid-item,
      .page-fb777-com-log-in__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-fb777-com-log-in__list,
      .page-fb777-com-log-in__steps-list,
      .page-fb777-com-log-in__payment-grid,
      .page-fb777-com-log-in__game-provider-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-fb777-com-log-in__faq-question {
        padding: 15px;
      }

      .page-fb777-com-log-in__faq-question h3 {
        font-size: 1em;
      }

      .page-fb777-com-log-in__faq-answer {
        padding: 0 15px;
      }

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

      .page-fb777-com-log-in__image-container {
        margin: 20px auto;
      }

      .page-fb777-com-log-in__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-fb777-com-log-in__hero-section h1 {
        font-size: 1.8em;
      }

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