
    /* Page-specific CSS for phmacao original website */
    :root {
      --phmacao-primary-color: #e60000; /* A vibrant red, common in casino branding */
      --phmacao-secondary-color: #ffcc00; /* Gold/yellow for accents */
      --phmacao-dark-background: #1a1a1a; /* Dark background for casino feel */
      --phmacao-light-text: #ffffff;
      --phmacao-gray-text: #cccccc;
      --phmacao-border-color: #444444;
      --phmacao-button-hover: #cc0000;
    }

    .page-phmacao-original-website {
      font-family: 'Arial', sans-serif;
      color: var(--phmacao-light-text);
      background-color: var(--phmacao-dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-phmacao-original-website__section {
      padding: 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-phmacao-original-website__section--dark {
      background-color: #222222;
    }

    .page-phmacao-original-website__section--light {
      background-color: #333333;
    }

    .page-phmacao-original-website__section-title {
      font-size: 2.8em;
      color: var(--phmacao-secondary-color);
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

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

    .page-phmacao-original-website__hero-section {
      background-color: var(--phmacao-dark-background);
      padding: 10px 0 0 0; /* Only a small padding-top because body already has header offset */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 70vh;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .page-phmacao-original-website__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Allowed for background images to ensure text readability */
    }

    .page-phmacao-original-website__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-phmacao-original-website__hero-title {
      font-size: 4em;
      color: var(--phmacao-secondary-color);
      margin-bottom: 20px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
      line-height: 1.1;
    }

    .page-phmacao-original-website__hero-subtitle {
      font-size: 1.5em;
      color: var(--phmacao-light-text);
      margin-bottom: 30px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-original-website__cta-button {
      display: inline-block;
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-light-text);
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phmacao-original-website__cta-button:hover {
      background-color: var(--phmacao-button-hover);
      transform: translateY(-3px);
    }

    .page-phmacao-original-website__register-login-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-phmacao-original-website__register-button,
    .page-phmacao-original-website__login-button {
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-light-text);
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      min-width: 100px;
    }

    .page-phmacao-original-website__register-button:hover,
    .page-phmacao-original-website__login-button:hover {
      background-color: var(--phmacao-button-hover);
      transform: scale(1.05);
    }

    .page-phmacao-original-website__text-block {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--phmacao-gray-text);
    }

    .page-phmacao-original-website__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      box-sizing: border-box;
    }

    .page-phmacao-original-website__game-card {
      background-color: #2c2c2c;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      border: 1px solid var(--phmacao-border-color);
    }

    .page-phmacao-original-website__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
    }

    .page-phmacao-original-website__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      position: relative;
    }

    .page-phmacao-original-website__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-phmacao-original-website__game-card:hover .page-phmacao-original-website__game-image {
      transform: scale(1.05);
    }

    .page-phmacao-original-website__game-content {
      padding: 20px;
      text-align: left;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phmacao-original-website__game-title {
      font-size: 1.5em;
      color: var(--phmacao-secondary-color);
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure long titles wrap */
      overflow-wrap: break-word;
      word-break: break-word; /* For long keywords */
    }

    .page-phmacao-original-website__game-description {
      font-size: 0.95em;
      color: var(--phmacao-gray-text);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-phmacao-original-website__provider-tag {
      display: inline-block;
      background-color: #444444;
      color: var(--phmacao-light-text);
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.8em;
      font-weight: bold;
    }

    .page-phmacao-original-website__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-phmacao-original-website__payment-item {
      background-color: #2c2c2c;
      border-radius: 10px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      border: 1px solid var(--phmacao-border-color);
      flex-basis: 150px; /* Base width for items */
      justify-content: center;
      box-sizing: border-box;
    }

    .page-phmacao-original-website__payment-item:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-phmacao-original-website__payment-name {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--phmacao-light-text);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* FAQ Section Styles */
    .page-phmacao-original-website__faq-section {
      padding: 60px 0;
      background-color: #222222;
      color: var(--phmacao-light-text);
    }

    .page-phmacao-original-website__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      padding: 0;
      list-style: none;
      box-sizing: border-box;
    }

    .page-phmacao-original-website__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--phmacao-border-color);
      box-sizing: border-box;
    }

    .page-phmacao-original-website__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-phmacao-original-website__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-phmacao-original-website__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--phmacao-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-phmacao-original-website__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 */
      min-width: 20px; /* Ensure space for + / - */
      text-align: center;
    }

    .page-phmacao-original-website__faq-item.active .page-phmacao-original-website__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-phmacao-original-website__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will be updated to 20px 25px on active */
      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(--phmacao-gray-text);
      text-align: left;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-phmacao-original-website__hero-title {
        font-size: 3.5em;
      }
      .page-phmacao-original-website__hero-subtitle {
        font-size: 1.3em;
      }
      .page-phmacao-original-website__section-title {
        font-size: 2.2em;
      }
      .page-phmacao-original-website__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-phmacao-original-website {
        padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile */
      }
      .page-phmacao-original-website__hero-section {
        min-height: 60vh;
      }
      .page-phmacao-original-website__hero-title {
        font-size: 2.5em;
      }
      .page-phmacao-original-website__hero-subtitle {
        font-size: 1.1em;
      }
      .page-phmacao-original-website__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-phmacao-original-website__section {
        padding: 40px 0;
      }
      .page-phmacao-original-website__section-title {
        font-size: 1.8em;
      }
      .page-phmacao-original-website__text-block {
        font-size: 1em;
        padding: 0 15px;
      }
      .page-phmacao-original-website__register-login-buttons {
        right: 10px;
        gap: 10px;
      }
      .page-phmacao-original-website__register-button,
      .page-phmacao-original-website__login-button {
        padding: 10px 15px;
        min-width: 80px;
      }
      .page-phmacao-original-website__game-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        padding: 0 15px;
      }
      .page-phmacao-original-website__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-phmacao-original-website__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-phmacao-original-website__payment-methods {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
      }
      .page-phmacao-original-website__payment-item {
        width: 100% !important;
        max-width: 300px !important; /* Limit width even if 100% */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }
      .page-phmacao-original-website__faq-list {
        padding: 0 15px;
      }
      .page-phmacao-original-website__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-phmacao-original-website__faq-question {
        padding: 15px 20px;
      }
      .page-phmacao-original-website__faq-question h3 {
        font-size: 1.1em;
      }
      .page-phmacao-original-website__faq-answer {
        padding: 0 20px;
      }
      .page-phmacao-original-website__faq-item.active .page-phmacao-original-website__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-phmacao-original-website__hero-title {
        font-size: 2em;
      }
      .page-phmacao-original-website__hero-subtitle {
        font-size: 0.9em;
      }
      .page-phmacao-original-website__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-phmacao-original-website__section-title {
        font-size: 1.5em;
      }
      .page-phmacao-original-website__register-login-buttons {
        right: 5px;
      }
    }
  