
    /* Base styles for the page */
    .page-phmacao-slot {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Section padding and margins */
    .page-phmacao-slot__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-phmacao-slot__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-phmacao-slot__section--dark .page-phmacao-slot__heading,
    .page-phmacao-slot__section--dark .page-phmacao-slot__subheading {
      color: #f39c12; /* Orange for headings on dark background */
    }

    /* Headings */
    .page-phmacao-slot__heading {
      font-size: 2.5em;
      color: #e67e22; /* Primary orange */
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-phmacao-slot__subheading {
      font-size: 1.8em;
      color: #34495e; /* Darker blue-grey */
      text-align: center;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-phmacao-slot__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phmacao-slot__text--highlight {
      color: #e67e22;
      font-weight: bold;
    }

    /* Hero Section */
    .page-phmacao-slot__hero-section {
      position: relative;
      width: 100%;
      height: 500px; /* Increased height for prominence */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, as body handles main offset */
      box-sizing: border-box;
    }

    .page-phmacao-slot__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
      box-sizing: border-box;
    }

    .page-phmacao-slot__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-phmacao-slot__hero-heading {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #f39c12; /* Orange for strong contrast */
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phmacao-slot__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #ecf0f1;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-slot__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #f39c12; /* Orange primary button */
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phmacao-slot__button:hover {
      background-color: #e67e22; /* Darker orange on hover */
    }

    .page-phmacao-slot__button-container {
      text-align: center;
      margin-top: 30px;
    }

    /* Game Showcase */
    .page-phmacao-slot__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-phmacao-slot__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-phmacao-slot__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    .page-phmacao-slot__game-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-phmacao-slot__game-title {
      font-size: 1.5em;
      color: #e67e22;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phmacao-slot__game-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* How to Play */
    .page-phmacao-slot__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
      box-sizing: border-box;
    }

    .page-phmacao-slot__step-item {
      background-color: #ecf0f1;
      border-left: 5px solid #f39c12;
      padding: 20px;
      border-radius: 8px;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, accounting for gap */
      min-width: 280px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      box-sizing: border-box;
      text-align: left;
    }

    .page-phmacao-slot__step-number {
      font-size: 2em;
      color: #e67e22;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-phmacao-slot__step-title {
      font-size: 1.3em;
      color: #34495e;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phmacao-slot__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Payment Methods & Game Providers */
    .page-phmacao-slot__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 30px;
    }

    .page-phmacao-slot__logo-item {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      height: 100px; /* Fixed height for logos */
      width: 100%;
      box-sizing: border-box;
      max-width: 200px; /* Max width for individual logo item */
    }

    .page-phmacao-slot__logo-image {
      max-width: 90%;
      max-height: 70px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-phmacao-slot__faq-list {
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      list-style: none;
    }

    .page-phmacao-slot__faq-item {
      background-color: #fefefe;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    }

    .page-phmacao-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e67e22; /* Question background */
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-phmacao-slot__faq-question:hover {
      background-color: #d35400; /* Darker orange on hover */
    }

    .page-phmacao-slot__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit; /* Inherit color from parent */
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-phmacao-slot__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-phmacao-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjusted padding for better visual */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #333;
      background-color: #fefefe;
      text-align: left;
    }

    .page-phmacao-slot__faq-item.active .page-phmacao-slot__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Apply padding when active */
      opacity: 1;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-phmacao-slot__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-phmacao-slot__heading {
        font-size: 2em;
        margin-bottom: 15px;
      }

      .page-phmacao-slot__subheading {
        font-size: 1.5em;
        margin-bottom: 10px;
      }

      .page-phmacao-slot__text {
        font-size: 1em;
      }

      .page-phmacao-slot__hero-section {
        height: 400px;
      }

      .page-phmacao-slot__hero-heading {
        font-size: 2.5em;
      }

      .page-phmacao-slot__hero-description {
        font-size: 1.1em;
      }

      .page-phmacao-slot__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-phmacao-slot__game-grid {
        grid-template-columns: 1fr;
      }

      .page-phmacao-slot__game-image {
        height: 200px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-phmacao-slot__game-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-phmacao-slot__steps-list {
        flex-direction: column;
        gap: 15px;
        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-slot__step-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phmacao-slot__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-phmacao-slot__logo-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-phmacao-slot__logo-image {
        max-height: 60px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-phmacao-slot__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-phmacao-slot__faq-question h3 {
        font-size: 1em;
      }

      .page-phmacao-slot__faq-answer {
        padding: 15px !important;
      }

      .page-phmacao-slot__faq-item.active .page-phmacao-slot__faq-answer {
        padding: 15px !important; /* Ensure padding is adjusted for mobile when active */
      }
    }
  