
    /* Base styles for the page */
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #007BFF; /* Blue for buttons/accents */
      --dark-background: #1a1a1a;
      --light-text: #f0f0f0;
      --gray-text: #cccccc;
      --border-color: #333;
      --card-background: #2a2a2a;
      --button-hover: #e6c200;
      --button-active: #ccae00;
    }

    .page-yy777-com-ph-login {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body has header offset */
    }

    .page-yy777-com-ph-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-yy777-com-ph-login__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-yy777-com-ph-login__section--dark {
      background-color: #222;
    }

    .page-yy777-com-ph-login__h1,
    .page-yy777-com-ph-login__h2,
    .page-yy777-com-ph-login__h3 {
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .page-yy777-com-ph-login__h1 {
      font-size: 2.8em;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-yy777-com-ph-login__h2 {
      font-size: 2.2em;
      margin-top: 30px;
    }

    .page-yy777-com-ph-login__h3 {
      font-size: 1.8em;
    }

    .page-yy777-com-ph-login__p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--gray-text);
    }

    .page-yy777-com-ph-login__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--dark-background);
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      margin-top: 20px;
    }

    .page-yy777-com-ph-login__button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    .page-yy777-com-ph-login__button:active {
      background-color: var(--button-active);
      transform: translateY(0);
    }

    /* Hero Section */
    .page-yy777-com-ph-login__hero-section {
      position: relative;
      background-color: #000;
      overflow: hidden;
      padding: 80px 0;
    }

    .page-yy777-com-ph-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    .page-yy777-com-ph-login__hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-yy777-com-ph-login__hero-h1 {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
    }

    .page-yy777-com-ph-login__hero-p {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--light-text);
    }

    /* Floating Login/Register Buttons */
    .page-yy777-com-ph-login__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-yy777-com-ph-login__floating-button {
      background-color: var(--secondary-color);
      color: var(--light-text);
      padding: 10px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-yy777-com-ph-login__floating-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-yy777-com-ph-login__floating-button--register {
      background-color: var(--primary-color);
      color: var(--dark-background);
    }

    .page-yy777-com-ph-login__floating-button--register:hover {
      background-color: var(--button-hover);
    }

    /* Info Cards */
    .page-yy777-com-ph-login__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-yy777-com-ph-login__info-card {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-yy777-com-ph-login__info-card-icon {
      width: 200px; /* Min size 200x200 requirement */
      height: 200px;
      object-fit: contain; /* Use contain to avoid cropping if aspect ratio varies */
      margin-bottom: 20px;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
      border-radius: 5px;
    }

    .page-yy777-com-ph-login__info-card-h3 {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 1.5em;
    }

    .page-yy777-com-ph-login__info-card-p {
      color: var(--gray-text);
      font-size: 1em;
      flex-grow: 1; /* Ensure consistent height */
    }

    /* Game Showcase */
    .page-yy777-com-ph-login__game-showcase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-yy777-com-ph-login__game-card {
      background-color: var(--card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-yy777-com-ph-login__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    .page-yy777-com-ph-login__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yy777-com-ph-login__game-card-h3 {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-yy777-com-ph-login__game-card-p {
      color: var(--gray-text);
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    /* Payment Methods */
    .page-yy777-com-ph-login__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-yy777-com-ph-login__payment-item {
      background-color: var(--card-background);
      padding: 15px 25px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      font-weight: bold;
      color: var(--light-text);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-yy777-com-ph-login__payment-icon {
      width: 200px; /* Min size 200x200 requirement */
      height: 200px;
      object-fit: contain;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    /* FAQ Section */
    .page-yy777-com-ph-login__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-yy777-com-ph-login__faq-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-yy777-com-ph-login__faq-item:hover {
      background-color: #333;
    }

    .page-yy777-com-ph-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-yy777-com-ph-login__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-yy777-com-ph-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-yy777-com-ph-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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(--gray-text);
      font-size: 1em;
    }

    .page-yy777-com-ph-login__faq-item.active .page-yy777-com-ph-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Adjusted padding when active */
      opacity: 1;
    }

    .page-yy777-com-ph-login__faq-item.active .page-yy777-com-ph-login__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    /* Promotions */
    .page-yy777-com-ph-login__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-yy777-com-ph-login__promo-card {
      background-color: var(--card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-yy777-com-ph-login__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    .page-yy777-com-ph-login__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yy777-com-ph-login__promo-h3 {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-yy777-com-ph-login__promo-p {
      color: var(--gray-text);
      font-size: 1em;
      margin-bottom: 15px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-yy777-com-ph-login__h1 {
        font-size: 2.2em;
      }

      .page-yy777-com-ph-login__h2 {
        font-size: 1.8em;
      }

      .page-yy777-com-ph-login__hero-h1 {
        font-size: 2.5em;
      }

      .page-yy777-com-ph-login__hero-p {
        font-size: 1.1em;
      }

      .page-yy777-com-ph-login__section {
        padding: 30px 0;
      }

      .page-yy777-com-ph-login__info-grid,
      .page-yy777-com-ph-login__game-showcase-grid,
      .page-yy777-com-ph-login__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-yy777-com-ph-login__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: center;
      }

      .page-yy777-com-ph-login__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-yy777-com-ph-login__faq-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-yy777-com-ph-login__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;
      }

      .page-yy777-com-ph-login__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-yy777-com-ph-login__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

      .page-yy777-com-ph-login__faq-item.active .page-yy777-com-ph-login__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive requirements */
      .page-yy777-com-ph-login__hero-background,
      .page-yy777-com-ph-login__info-card-icon,
      .page-yy777-com-ph-login__game-card-image,
      .page-yy777-com-ph-login__payment-icon,
      .page-yy777-com-ph-login__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-yy777-com-ph-login__payment-grid {
        flex-direction: column;
        align-items: center;
      }

      .page-yy777-com-ph-login__payment-item {
        width: 100%;
        max-width: 300px; /* Limit individual item width for better stacking */
        justify-content: center;
        box-sizing: border-box;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-com-ph-login__h1 {
        font-size: 1.8em;
      }
      .page-yy777-com-ph-login__hero-h1 {
        font-size: 2em;
      }
      .page-yy777-com-ph-login__hero-p {
        font-size: 1em;
      }
      .page-yy777-com-ph-login__button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  