
    /* Page-specific CSS for phmacao 2 */
    :root {
      --phmacao-primary-color: #FFD700; /* Gold */
      --phmacao-secondary-color: #000000; /* Black */
      --phmacao-accent-color: #DC143C; /* Crimson for promotions */
      --phmacao-text-color: #FFFFFF;
      --phmacao-dark-text: #333333;
      --phmacao-light-bg: #1A1A1A;
      --phmacao-dark-bg: #0D0D0D;
      --phmacao-border-color: #333333;
    }

    .page-phmacao-2-2 {
      font-family: 'Arial', sans-serif;
      color: var(--phmacao-text-color);
      background-color: var(--phmacao-dark-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for sticky buttons */
    }

    .page-phmacao-2-2__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-phmacao-2-2__hero-section {
      text-align: center;
      padding: 60px 20px 40px;
      background: linear-gradient(135deg, var(--phmacao-dark-bg) 0%, var(--phmacao-light-bg) 100%);
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

    .page-phmacao-2-2__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
      object-fit: cover;
    }

    .page-phmacao-2-2__hero-title {
      font-size: 2.8em;
      color: var(--phmacao-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-2-2__hero-subtitle {
      font-size: 1.4em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    .page-phmacao-2-2__cta-button {
      display: inline-block;
      background-color: var(--phmacao-accent-color);
      color: var(--phmacao-text-color);
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-phmacao-2-2__cta-button:hover {
      background-color: #CC0000;
      transform: translateY(-3px);
    }

    .page-phmacao-2-2__section-title {
      font-size: 2.2em;
      color: var(--phmacao-primary-color);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-2-2__features-grid,
    .page-phmacao-2-2__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-phmacao-2-2__feature-card,
    .page-phmacao-2-2__provider-card {
      background-color: var(--phmacao-light-bg);
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--phmacao-border-color);
    }

    .page-phmacao-2-2__feature-card:hover,
    .page-phmacao-2-2__provider-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    }

    .page-phmacao-2-2__card-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

    .page-phmacao-2-2__card-title {
      font-size: 1.5em;
      color: var(--phmacao-primary-color);
      margin-bottom: 10px;
    }

    .page-phmacao-2-2__card-description {
      color: #CCCCCC;
      font-size: 0.95em;
    }

    .page-phmacao-2-2__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-phmacao-2-2__promotion-card {
      background-color: var(--phmacao-light-bg);
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      border: 1px solid var(--phmacao-border-color);
      transition: transform 0.3s ease;
    }

    .page-phmacao-2-2__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-phmacao-2-2__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-phmacao-2-2__promotion-content {
      padding: 20px;
    }

    .page-phmacao-2-2__promotion-title {
      font-size: 1.6em;
      color: var(--phmacao-accent-color);
      margin-bottom: 10px;
    }

    .page-phmacao-2-2__promotion-description {
      color: #CCCCCC;
      font-size: 0.9em;
      margin-bottom: 20px;
    }

    .page-phmacao-2-2__game-types-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-phmacao-2-2__game-type-card {
      background-color: var(--phmacao-light-bg);
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--phmacao-border-color);
      transition: transform 0.2s ease;
    }

    .page-phmacao-2-2__game-type-card:hover {
      transform: translateY(-3px);
    }

    .page-phmacao-2-2__game-type-image {
      width: 120px;
      height: 120px;
      object-fit: contain;
      margin: 0 auto 10px;
      display: block;
      border-radius: 8px;
    }

    .page-phmacao-2-2__game-type-name {
      font-size: 1.1em;
      color: var(--phmacao-primary-color);
      font-weight: bold;
    }

    .page-phmacao-2-2__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-phmacao-2-2__payment-method-item {
      background-color: var(--phmacao-light-bg);
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--phmacao-border-color);
    }

    .page-phmacao-2-2__payment-method-logo {
      width: 100px;
      height: 60px;
      object-fit: contain;
      margin: 0 auto;
      display: block;
    }

    .page-phmacao-2-2__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-phmacao-2-2__sticky-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-phmacao-2-2__sticky-button--register {
      background-color: var(--phmacao-accent-color);
      color: var(--phmacao-text-color);
    }

    .page-phmacao-2-2__sticky-button--register:hover {
      background-color: #CC0000;
    }

    .page-phmacao-2-2__sticky-button--login {
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-dark-text);
    }

    .page-phmacao-2-2__sticky-button--login:hover {
      background-color: #E6C200;
    }

    /* FAQ Section Styles */
    .page-phmacao-2-2__faq-section {
      background-color: var(--phmacao-light-bg);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      margin-top: 40px;
    }

    .page-phmacao-2-2__faq-title {
      font-size: 2em;
      color: var(--phmacao-primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-phmacao-2-2__faq-item {
      border-bottom: 1px solid var(--phmacao-border-color);
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-phmacao-2-2__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-phmacao-2-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px;
      background-color: var(--phmacao-dark-bg);
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-phmacao-2-2__faq-question:hover {
      background-color: #2A2A2A;
    }

    .page-phmacao-2-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--phmacao-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phmacao-2-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--phmacao-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      width: 24px;
      text-align: center;
      line-height: 1;
    }

    .page-phmacao-2-2__faq-item.active .page-phmacao-2-2__faq-toggle {
      transform: rotate(45deg); /* Visually represent minus sign */
    }

    .page-phmacao-2-2__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: #E0E0E0;
      font-size: 0.95em;
      background-color: #222222;
      border-radius: 0 0 8px 8px;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-phmacao-2-2__section {
        padding: 20px 15px;
      }

      .page-phmacao-2-2__hero-title {
        font-size: 2.2em;
      }

      .page-phmacao-2-2__hero-subtitle {
        font-size: 1.1em;
      }

      .page-phmacao-2-2__section-title {
        font-size: 1.8em;
      }

      .page-phmacao-2-2__features-grid,
      .page-phmacao-2-2__promotions-grid,
      .page-phmacao-2-2__game-types-grid,
      .page-phmacao-2-2__game-providers-grid,
      .page-phmacao-2-2__payment-methods-grid {
        grid-template-columns: 1fr;
      }

      .page-phmacao-2-2__sticky-buttons {
        flex-direction: row;
        padding: 10px;
      }

      .page-phmacao-2-2__sticky-button {
        margin: 0 5px;
        font-size: 1em;
        padding: 10px 0;
      }

      /* List item responsiveness for all grids */
      .page-phmacao-2-2__features-grid > *,
      .page-phmacao-2-2__promotions-grid > *,
      .page-phmacao-2-2__game-types-grid > *,
      .page-phmacao-2-2__game-providers-grid > *,
      .page-phmacao-2-2__payment-methods-grid > * {
        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-phmacao-2-2__features-grid,
      .page-phmacao-2-2__promotions-grid,
      .page-phmacao-2-2__game-types-grid,
      .page-phmacao-2-2__game-providers-grid,
      .page-phmacao-2-2__payment-methods-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-phmacao-2-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-phmacao-2-2__faq-answer {
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-phmacao-2-2__hero-title {
        font-size: 1.8em;
      }

      .page-phmacao-2-2__hero-subtitle {
        font-size: 1em;
      }

      .page-phmacao-2-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-phmacao-2-2__section-title {
        font-size: 1.6em;
      }

      .page-phmacao-2-2__card-title {
        font-size: 1.3em;
      }

      .page-phmacao-2-2__promotion-title {
        font-size: 1.4em;
      }

      .page-phmacao-2-2__game-type-name {
        font-size: 1em;
      }
    }
  