
    :root {
      --phtay-primary-color: #FFD700; /* Gold */
      --phtay-secondary-color: #000000; /* Black */
      --phtay-accent-color: #DC143C; /* Crimson for highlights */
      --phtay-text-color: #FFFFFF;
      --phtay-dark-text-color: #333333;
      --phtay-background-dark: #1a1a1a;
      --phtay-background-light: #2c2c2c;
      --phtay-border-color: #444444;
    }

    /* General Styling for page-phtay-login */
    .page-phtay-login {
      font-family: 'Arial', sans-serif;
      color: var(--phtay-text-color);
      background-color: var(--phtay-background-dark);
      line-height: 1.6;
      padding-bottom: 20px; /* Ensure space above footer */
    }

    .page-phtay-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-phtay-login__section-title {
      font-size: 2.5em;
      color: var(--phtay-primary-color);
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-phtay-login__section-description {
      font-size: 1.1em;
      color: var(--phtay-text-color);
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-phtay-login__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,login,phtay,casino]') no-repeat center center / cover;
      padding: 10px 0 80px; /* 10px top for aesthetic spacing under header */
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      position: relative;
      box-sizing: border-box;
    }

    .page-phtay-login__hero-content {
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-phtay-login__hero-title {
      font-size: 3.5em;
      color: var(--phtay-primary-color);
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-phtay-login__hero-description {
      font-size: 1.3em;
      color: var(--phtay-text-color);
      margin-bottom: 40px;
    }

    .page-phtay-login__hero-button {
      background-color: var(--phtay-accent-color);
      color: var(--phtay-text-color);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-weight: bold;
      text-decoration: none; /* For button acting as a link */
      display: inline-block;
    }

    .page-phtay-login__hero-button:hover {
      background-color: #B2002C; /* Darker crimson */
    }

    /* Login Form Section */
    .page-phtay-login__login-form-section {
      padding: 60px 0;
      background-color: var(--phtay-background-light);
    }

    .page-phtay-login__login-form {
      max-width: 500px;
      margin: 0 auto;
      padding: 40px;
      background-color: var(--phtay-background-dark);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-phtay-login__form-group {
      margin-bottom: 25px;
    }

    .page-phtay-login__form-label {
      display: block;
      margin-bottom: 10px;
      font-size: 1.1em;
      color: var(--phtay-primary-color);
      font-weight: bold;
    }

    .page-phtay-login__form-input {
      width: 100%;
      padding: 15px;
      border: 1px solid var(--phtay-border-color);
      border-radius: 5px;
      background-color: var(--phtay-background-light);
      color: var(--phtay-text-color);
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-phtay-login__form-input::placeholder {
      color: #aaa;
    }

    .page-phtay-login__form-submit-button {
      width: 100%;
      padding: 15px;
      background-color: var(--phtay-primary-color);
      color: var(--phtay-dark-text-color);
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-weight: bold;
    }

    .page-phtay-login__form-submit-button:hover {
      background-color: #FFC107; /* Slightly darker gold */
    }

    .page-phtay-login__form-links {
      text-align: center;
      margin-top: 20px;
    }

    .page-phtay-login__form-link-text {
      color: var(--phtay-text-color);
      margin-bottom: 10px;
    }

    .page-phtay-login__text-button {
      background: none;
      border: none;
      color: var(--phtay-accent-color);
      cursor: pointer;
      font-size: 1em;
      text-decoration: underline;
      padding: 0;
      margin: 0;
      transition: color 0.3s ease;
    }

    .page-phtay-login__text-button:hover {
      color: #FF4500; /* Orange-red */
    }

    /* Features Section */
    .page-phtay-login__features-section {
      padding: 60px 0;
      background-color: var(--phtay-background-dark);
    }

    .page-phtay-login__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phtay-login__feature-item {
      background-color: var(--phtay-background-light);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-phtay-login__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-phtay-login__feature-icon {
      width: 100%; /* Ensure image fills container */
      max-width: 250px; /* Max width for consistency */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-phtay-login__feature-title {
      font-size: 1.5em;
      color: var(--phtay-primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-phtay-login__feature-text {
      font-size: 1em;
      color: var(--phtay-text-color);
    }

    /* FAQ Section */
    .page-phtay-login__faq-section {
      padding: 60px 0;
      background-color: var(--phtay-background-light);
    }

    .page-phtay-login__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
    }

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

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

    .page-phtay-login__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-phtay-login__faq-question-text {
      font-size: 1.2em;
      color: var(--phtay-primary-color);
      margin: 0;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-phtay-login__faq-toggle {
      font-size: 1.5em;
      color: var(--phtay-primary-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-phtay-login__faq-item.active .page-phtay-login__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-phtay-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding to match question's left/right */
      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(--phtay-text-color);
      background-color: #222222; /* Slightly different background for answer */
    }

    .page-phtay-login__faq-item.active .page-phtay-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-phtay-login__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Space at the bottom of paragraph within answer */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-phtay-login__hero-title {
        font-size: 3em;
      }
      .page-phtay-login__hero-description {
        font-size: 1.1em;
      }
      .page-phtay-login__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-phtay-login__hero-section {
        min-height: 400px;
        padding-top: 10px; /* Aesthetic padding below header */
      }
      .page-phtay-login__hero-title {
        font-size: 2.5em;
      }
      .page-phtay-login__hero-description {
        font-size: 1em;
      }
      .page-phtay-login__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-phtay-login__section-title {
        font-size: 2em;
      }
      .page-phtay-login__section-description {
        font-size: 0.9em;
        margin-bottom: 20px;
      }
      .page-phtay-login__login-form {
        padding: 25px;
      }
      .page-phtay-login__form-label {
        font-size: 1em;
      }
      .page-phtay-login__form-input,
      .page-phtay-login__form-submit-button {
        padding: 12px;
        font-size: 1em;
      }
      .page-phtay-login__features-grid {
        grid-template-columns: 1fr; /* Single column for features */
        gap: 20px;
      }
      .page-phtay-login__feature-item {
        padding: 20px;
        width: 100% !important; /* Mobile list item width */
        max-width: 100% !important; /* Mobile list item max-width */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-phtay-login__feature-icon {
        max-width: 200px;
      }
      .page-phtay-login__feature-title {
        font-size: 1.3em;
      }
      .page-phtay-login__faq-question {
        padding: 15px 20px;
      }
      .page-phtay-login__faq-question-text {
        font-size: 1.1em;
      }
      .page-phtay-login__faq-toggle {
        font-size: 1.3em;
      }
      .page-phtay-login__faq-answer {
        padding: 0 20px;
      }
      .page-phtay-login__faq-item.active .page-phtay-login__faq-answer {
        padding: 15px 20px !important;
      }
      .page-phtay-login__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      /* Container for lists */
      .page-phtay-login__features-grid,
      .page-phtay-login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding to match container */
        margin-left: auto !important;
        margin-right: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-phtay-login__hero-title {
        font-size: 2em;
      }
      .page-phtay-login__hero-description {
        font-size: 0.9em;
      }
      .page-phtay-login__section-title {
        font-size: 1.8em;
      }
      .page-phtay-login__login-form {
        padding: 20px;
      }
      .page-phtay-login__form-input,
      .page-phtay-login__form-submit-button {
        padding: 10px;
        font-size: 0.9em;
      }
      .page-phtay-login__faq-question-text {
        font-size: 1em;
      }
    }
  