
    /* Page-specific CSS for phmacao vip login register */
    :root {
      --phmacao-primary-color: #FFD700; /* Gold */
      --phmacao-secondary-color: #A0522D; /* Sienna */
      --phmacao-dark-bg: #1a1a1a;
      --phmacao-light-text: #f0f0f0;
      --phmacao-medium-gray: #333;
      --phmacao-border-color: #555;
    }

    .page-phmacao-vip-login-register {
      font-family: 'Arial', sans-serif;
      color: var(--phmacao-light-text);
      background-color: var(--phmacao-dark-bg);
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space before footer */
      padding-top: 10px; /* Small padding top, body handles header offset */
    }

    .page-phmacao-vip-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-phmacao-vip-login-register__section--dark {
      background-color: var(--phmacao-medium-gray);
    }

    .page-phmacao-vip-login-register__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:phmacao,vip,login,register,casino,gaming]');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 60vh;
      position: relative;
    }

    .page-phmacao-vip-login-register__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-phmacao-vip-login-register__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-phmacao-vip-login-register__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--phmacao-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phmacao-vip-login-register__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      line-height: 1.5;
    }

    .page-phmacao-vip-login-register__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-phmacao-vip-login-register__button {
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-dark-bg);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .page-phmacao-vip-login-register__button:hover {
      background-color: #FFC107; /* Slightly lighter gold */
      transform: translateY(-2px);
    }

    .page-phmacao-vip-login-register__button--secondary {
      background-color: var(--phmacao-secondary-color);
      color: var(--phmacao-light-text);
    }

    .page-phmacao-vip-login-register__button--secondary:hover {
      background-color: #8B4513; /* Darker sienna */
    }

    .page-phmacao-vip-login-register__heading {
      font-size: 2.5em;
      color: var(--phmacao-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-phmacao-vip-login-register__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--phmacao-secondary-color);
      border-radius: 2px;
    }

    .page-phmacao-vip-login-register__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phmacao-vip-login-register__benefit-card {
      background-color: var(--phmacao-medium-gray);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--phmacao-border-color);
    }

    .page-phmacao-vip-login-register__benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-vip-login-register__benefit-card-title {
      font-size: 1.5em;
      color: var(--phmacao-primary-color);
      margin-bottom: 15px;
    }

    .page-phmacao-vip-login-register__benefit-card-text {
      font-size: 1em;
      color: var(--phmacao-light-text);
    }

    .page-phmacao-vip-login-register__image-container {
      margin: 40px auto;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-phmacao-vip-login-register__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    .page-phmacao-vip-login-register__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-phmacao-vip-login-register__step-item {
      background-color: var(--phmacao-medium-gray);
      padding: 25px;
      border-radius: 8px;
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid var(--phmacao-border-color);
    }

    .page-phmacao-vip-login-register__step-number {
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-dark-bg);
      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-phmacao-vip-login-register__step-content {
      flex-grow: 1;
    }

    .page-phmacao-vip-login-register__step-title {
      font-size: 1.3em;
      color: var(--phmacao-primary-color);
      margin-bottom: 10px;
    }

    .page-phmacao-vip-login-register__step-description {
      font-size: 1em;
      color: var(--phmacao-light-text);
    }

    .page-phmacao-vip-login-register__promo-card {
      background-color: var(--phmacao-secondary-color);
      padding: 30px;
      border-radius: 10px;
      margin-top: 40px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-phmacao-vip-login-register__promo-title {
      font-size: 2em;
      color: var(--phmacao-primary-color);
      margin-bottom: 15px;
    }

    .page-phmacao-vip-login-register__promo-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: var(--phmacao-light-text);
    }

    .page-phmacao-vip-login-register__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-phmacao-vip-login-register__provider-item {
      background-color: var(--phmacao-medium-gray);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      color: var(--phmacao-light-text);
      border: 1px solid var(--phmacao-border-color);
    }

    .page-phmacao-vip-login-register__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-phmacao-vip-login-register__faq-item {
      background-color: var(--phmacao-medium-gray);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--phmacao-border-color);
    }

    .page-phmacao-vip-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2c2c2c;
      transition: background-color 0.3s ease;
    }

    .page-phmacao-vip-login-register__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-phmacao-vip-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--phmacao-primary-color);
      pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-phmacao-vip-login-register__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--phmacao-primary-color);
      pointer-events: none; /* Prevent icon interfering with click */
      transition: transform 0.3s ease;
    }

    .page-phmacao-vip-login-register__faq-item.active .page-phmacao-vip-login-register__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-phmacao-vip-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--phmacao-light-text);
    }

    .page-phmacao-vip-login-register__faq-item.active .page-phmacao-vip-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-phmacao-vip-login-register__hero-title {
        font-size: 2.5em;
      }

      .page-phmacao-vip-login-register__hero-description {
        font-size: 1em;
      }

      .page-phmacao-vip-login-register__cta-buttons {
        flex-direction: column;
      }

      .page-phmacao-vip-login-register__button {
        width: 100%;
        box-sizing: border-box;
      }

      .page-phmacao-vip-login-register__heading {
        font-size: 2em;
      }

      .page-phmacao-vip-login-register__section {
        padding: 30px 15px;
      }

      .page-phmacao-vip-login-register__benefits-grid {
        grid-template-columns: 1fr;
      }

      .page-phmacao-vip-login-register__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;
      }

      .page-phmacao-vip-login-register__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-phmacao-vip-login-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phmacao-vip-login-register__step-number {
        margin-bottom: 15px;
      }

      .page-phmacao-vip-login-register__step-title {
        font-size: 1.2em;
      }

      .page-phmacao-vip-login-register__promo-title {
        font-size: 1.5em;
      }

      .page-phmacao-vip-login-register__promo-description {
        font-size: 0.95em;
      }

      .page-phmacao-vip-login-register__provider-item {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-phmacao-vip-login-register__faq-question {
        padding: 15px 20px;
      }

      .page-phmacao-vip-login-register__faq-question h3 {
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phmacao-vip-login-register__faq-answer {
        padding: 15px 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phmacao-vip-login-register__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  