
    /* Base styles for the page-phmacao-com-2 */
    :root {
      --phmacao-primary-color: #FFD700; /* Gold/Yellow */
      --phmacao-primary-color-hover: #E6C200; /* Slightly darker gold */
      --phmacao-secondary-color: #000000; /* Black */
      --phmacao-accent-color: #DC143C; /* Crimson/Red */
      --phmacao-accent-color-hover: #C00B2F; /* Slightly darker crimson */
      --phmacao-text-color: #FFFFFF; /* White */
      --phmacao-text-dark: #333333; /* Dark text for light backgrounds */
      --phmacao-bg-dark: #1a1a1a;
      --phmacao-bg-light: #2c2c2c;
      --phmacao-border-color: #444444;
      --phmacao-spacing-unit: 1rem;
    }

    .page-phmacao-com-2 {
      font-family: 'Arial', sans-serif;
      color: var(--phmacao-text-color);
      background-color: var(--phmacao-bg-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-phmacao-com-2__section {
      padding: calc(var(--phmacao-spacing-unit) * 3) var(--phmacao-spacing-unit);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-phmacao-com-2__section--dark {
      background-color: var(--phmacao-bg-light);
    }

    .page-phmacao-com-2__section-title {
      font-size: 2.5em;
      color: var(--phmacao-primary-color);
      margin-bottom: calc(var(--phmacao-spacing-unit) * 2);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-phmacao-com-2__section-subtitle {
      font-size: 1.2em;
      color: var(--phmacao-text-color);
      margin-bottom: calc(var(--phmacao-spacing-unit) * 3);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-phmacao-com-2__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for visual impact */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding as per instructions */
    }

    .page-phmacao-com-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.5); /* Darken background image for text readability */
      max-width: 100% !important;
      height: auto !important;
    }

    .page-phmacao-com-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: var(--phmacao-spacing-unit);
    }

    .page-phmacao-com-2__hero-title {
      font-size: 3.5em;
      color: var(--phmacao-primary-color);
      margin-bottom: var(--phmacao-spacing-unit);
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phmacao-com-2__hero-subtitle {
      font-size: 1.5em;
      color: var(--phmacao-text-color);
      margin-bottom: calc(var(--phmacao-spacing-unit) * 2);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

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

    .page-phmacao-com-2__cta-button:hover {
      background-color: var(--phmacao-accent-color-hover);
      transform: translateY(-2px);
    }

    .page-phmacao-com-2__secondary-button {
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-secondary-color);
    }

    .page-phmacao-com-2__secondary-button:hover {
      background-color: var(--phmacao-primary-color-hover);
    }

    /* Floating Buttons */
    .page-phmacao-com-2__floating-buttons {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
      pointer-events: none; /* Allow clicks to pass through if not on button itself */
    }

    .page-phmacao-com-2__floating-button {
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-secondary-color);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.2s ease;
      pointer-events: auto; /* Re-enable clicks for the button */
      border: none;
      cursor: pointer;
    }

    .page-phmacao-com-2__floating-button:hover {
      transform: scale(1.05);
      background-color: var(--phmacao-primary-color-hover);
    }

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

    .page-phmacao-com-2__floating-button--register:hover {
      background-color: var(--phmacao-accent-color-hover);
    }

    /* About Section */
    .page-phmacao-com-2__about-text {
      font-size: 1.1em;
      margin-bottom: var(--phmacao-spacing-unit);
      color: var(--phmacao-text-color);
    }

    /* Game Categories Section */
    .page-phmacao-com-2__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: calc(var(--phmacao-spacing-unit) * 2);
      margin-top: calc(var(--phmacao-spacing-unit) * 2);
    }

    .page-phmacao-com-2__game-card {
      background-color: var(--phmacao-bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-phmacao-com-2__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-phmacao-com-2__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100% !important;
      height: auto !important;
    }

    .page-phmacao-com-2__game-card-content {
      padding: var(--phmacao-spacing-unit) calc(var(--phmacao-spacing-unit) * 1.5);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phmacao-com-2__game-card-title {
      font-size: 1.5em;
      color: var(--phmacao-primary-color);
      margin-bottom: 0.5rem;
    }

    .page-phmacao-com-2__game-card-description {
      font-size: 0.95em;
      color: var(--phmacao-text-color);
      margin-bottom: var(--phmacao-spacing-unit);
    }

    /* Providers Section */
    .page-phmacao-com-2__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: calc(var(--phmacao-spacing-unit) * 1.5);
      margin-top: calc(var(--phmacao-spacing-unit) * 2);
    }

    .page-phmacao-com-2__provider-item {
      background-color: var(--phmacao-bg-light);
      padding: var(--phmacao-spacing-unit);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Uniform height */
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }

    .page-phmacao-com-2__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-phmacao-com-2__provider-logo {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
      max-width: 100% !important;
      height: auto !important;
    }

    /* Promotions Section */
    .page-phmacao-com-2__promotions-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: calc(var(--phmacao-spacing-unit) * 2);
      margin-top: calc(var(--phmacao-spacing-unit) * 2);
    }

    .page-phmacao-com-2__promo-item {
      background-color: var(--phmacao-bg-light);
      padding: calc(var(--phmacao-spacing-unit) * 1.5);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phmacao-com-2__promo-title {
      color: var(--phmacao-primary-color);
      font-size: 1.4em;
      margin-bottom: 0.5rem;
    }

    .page-phmacao-com-2__promo-description {
      color: var(--phmacao-text-color);
      font-size: 0.95em;
      margin-bottom: var(--phmacao-spacing-unit);
    }

    .page-phmacao-com-2__promo-button {
      background-color: var(--phmacao-accent-color);
      color: var(--phmacao-text-color);
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      align-self: flex-start; /* Align button to start */
    }

    .page-phmacao-com-2__promo-button:hover {
      background-color: var(--phmacao-accent-color-hover);
    }

    /* Payment Methods Section */
    .page-phmacao-com-2__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: var(--phmacao-spacing-unit);
      margin-top: calc(var(--phmacao-spacing-unit) * 2);
    }

    .page-phmacao-com-2__payment-item {
      background-color: var(--phmacao-bg-light);
      padding: var(--phmacao-spacing-unit);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }

    .page-phmacao-com-2__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-phmacao-com-2__payment-logo {
      max-width: 90%;
      max-height: 60px;
      object-fit: contain;
      max-width: 100% !important;
      height: auto !important;
    }

    /* Why Choose Us Section */
    .page-phmacao-com-2__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: calc(var(--phmacao-spacing-unit) * 2);
      margin-top: calc(var(--phmacao-spacing-unit) * 2);
      text-align: left;
    }

    .page-phmacao-com-2__feature-item {
      background-color: var(--phmacao-bg-light);
      padding: calc(var(--phmacao-spacing-unit) * 1.5);
      border-left: 5px solid var(--phmacao-primary-color);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-phmacao-com-2__feature-title {
      color: var(--phmacao-primary-color);
      font-size: 1.3em;
      margin-bottom: 0.5rem;
    }

    .page-phmacao-com-2__feature-description {
      color: var(--phmacao-text-color);
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-phmacao-com-2__faq-list {
      max-width: 900px;
      margin: calc(var(--phmacao-spacing-unit) * 2) auto 0;
      text-align: left;
    }

    .page-phmacao-com-2__faq-item {
      background-color: var(--phmacao-bg-light);
      border: 1px solid var(--phmacao-border-color);
      border-radius: 8px;
      margin-bottom: var(--phmacao-spacing-unit);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-phmacao-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: calc(var(--phmacao-spacing-unit) * 1.5);
      cursor: pointer;
      background-color: var(--phmacao-bg-light);
      color: var(--phmacao-primary-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-phmacao-com-2__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-phmacao-com-2__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to match parent font size */
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phmacao-com-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      width: 1em; /* Ensure consistent width for + and - */
      display: inline-block;
      text-align: center;
    }

    .page-phmacao-com-2__faq-item:not(.active) .page-phmacao-com-2__faq-toggle::before {
        content: "+";
    }
    .page-phmacao-com-2__faq-item.active .page-phmacao-com-2__faq-toggle::before {
        content: "−"; /* Unicode minus sign */
    }

    .page-phmacao-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding, will be adjusted on active */
      opacity: 0;
      color: var(--phmacao-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 0.95em;
    }

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

    /* Call to Action Section */
    .page-phmacao-com-2__cta-section {
      background-color: var(--phmacao-accent-color);
      padding: calc(var(--phmacao-spacing-unit) * 3) var(--phmacao-spacing-unit);
      text-align: center;
    }

    .page-phmacao-com-2__cta-text {
      font-size: 1.8em;
      color: var(--phmacao-text-color);
      margin-bottom: calc(var(--phmacao-spacing-unit) * 1.5);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-phmacao-com-2__section {
        padding: calc(var(--phmacao-spacing-unit) * 2) var(--phmacao-spacing-unit);
      }

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

      .page-phmacao-com-2__hero-section {
        height: 70vh;
      }

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

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

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

      .page-phmacao-com-2__floating-buttons {
        right: 10px;
        gap: 10px;
      }

      .page-phmacao-com-2__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      /* List item mobile responsiveness */
      .page-phmacao-com-2__game-categories,
      .page-phmacao-com-2__promotions-list,
      .page-phmacao-com-2__payment-methods-grid,
      .page-phmacao-com-2__features-list,
      .page-phmacao-com-2__providers-grid {
        grid-template-columns: 1fr; /* Single column layout */
        padding: 0; /* Remove horizontal padding from grid container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phmacao-com-2__game-card,
      .page-phmacao-com-2__promo-item,
      .page-phmacao-com-2__payment-item,
      .page-phmacao-com-2__feature-item,
      .page-phmacao-com-2__provider-item,
      .page-phmacao-com-2__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phmacao-com-2__game-card-content,
      .page-phmacao-com-2__promo-item,
      .page-phmacao-com-2__feature-item {
        padding: var(--phmacao-spacing-unit) !important;
      }

      .page-phmacao-com-2__faq-question {
        padding: var(--phmacao-spacing-unit) !important;
        font-size: 1.1em;
      }

      .page-phmacao-com-2__faq-answer {
        padding: 0 10px !important; /* Adjusted for smaller screens */
      }

      .page-phmacao-com-2__faq-item.active .page-phmacao-com-2__faq-answer {
        padding: 15px 10px !important; /* Adjusted for smaller screens */
      }

      .page-phmacao-com-2__cta-text {
        font-size: 1.4em;
      }
    }

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

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

      .page-phmacao-com-2__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-phmacao-com-2__floating-buttons {
        right: 5px;
      }

      .page-phmacao-com-2__floating-button {
        padding: 8px 15px;
        font-size: 0.8em;
      }
    }
  