
    /* Base styles for the page-specific content */
    .page-phmacao-club-home {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small padding to avoid content directly touching the header */
    }

    /* General section styling */
    .page-phmacao-club-home__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-phmacao-club-home__section-title {
      text-align: center;
      color: #a01a1a; /* A strong red for branding */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-phmacao-club-home__section-subtitle {
      text-align: center;
      color: #555;
      font-size: 1.2em;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-phmacao-club-home__hero-section {
      text-align: center;
      background: linear-gradient(135deg, #a01a1a, #d43b3b); /* Gradient background */
      color: #fff;
      padding: 80px 20px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0; /* No margin bottom for hero */
      position: relative;
      overflow: hidden;
    }

    .page-phmacao-club-home__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-phmacao-club-home__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-phmacao-club-home__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold/yellow for CTA */
      color: #a01a1a;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phmacao-club-home__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-phmacao-club-home__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-phmacao-club-home__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #a01a1a;
      color: #fff;
      font-size: 0.9em;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure no default button border */
      cursor: pointer;
    }

    .page-phmacao-club-home__floating-button--login {
      background-color: #ffcc00; /* Gold for login */
      color: #a01a1a;
    }

    .page-phmacao-club-home__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    /* Game Categories / Product Display */
    .page-phmacao-club-home__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center; /* Center the grid items */
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phmacao-club-home__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Important for grid items */
    }

    .page-phmacao-club-home__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .page-phmacao-club-home__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee; /* Placeholder background */
    }

    .page-phmacao-club-home__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensure image covers the area */
      width: 100%; /* Important for max-width to work */
    }

    .page-phmacao-club-home__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phmacao-club-home__game-card-title {
      font-size: 1.4em;
      color: #a01a1a;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phmacao-club-home__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-phmacao-club-home__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phmacao-club-home__promo-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-phmacao-club-home__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .page-phmacao-club-home__promo-image-wrapper {
      width: 100%;
      height: 180px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-phmacao-club-home__promo-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
    }

    .page-phmacao-club-home__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phmacao-club-home__promo-title {
      font-size: 1.3em;
      color: #a01a1a;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phmacao-club-home__promo-description {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-phmacao-club-home__promo-button {
      background-color: #ffcc00;
      color: #a01a1a;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .page-phmacao-club-home__promo-button:hover {
      background-color: #e6b800;
    }

    /* Why Choose Us / Features */
    .page-phmacao-club-home__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phmacao-club-home__feature-card {
      text-align: center;
      background-color: #fefefe;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-phmacao-club-home__feature-icon-wrapper {
        margin-bottom: 20px;
        width: 100%; /* Ensure wrapper is responsive */
        height: 100px; /* Fixed height for consistency */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .page-phmacao-club-home__feature-icon {
      max-width: 100%; /* Allow icon to scale down */
      max-height: 80px; /* Constrain icon height */
      object-fit: contain;
      height: auto;
      width: auto; /* Allow width to adjust based on aspect ratio */
    }

    .page-phmacao-club-home__feature-title {
      font-size: 1.2em;
      color: #a01a1a;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phmacao-club-home__feature-description {
      font-size: 0.9em;
      color: #666;
    }

    /* Payment Methods & Game Providers */
    .page-phmacao-club-home__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      justify-items: center;
      align-items: center;
    }

    .page-phmacao-club-home__logo-item {
      padding: 15px;
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
      width: 100%; /* Ensure it takes full grid column width */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Uniform height for logos */
    }

    .page-phmacao-club-home__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-phmacao-club-home__logo-image {
      max-width: 100%;
      max-height: 70px; /* Constrain logo height */
      object-fit: contain;
      height: auto;
      width: auto; /* Allow width to adjust based on aspect ratio */
    }

    /* FAQ Section */
    .page-phmacao-club-home__faq-container {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phmacao-club-home__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fefefe;
    }

    .page-phmacao-club-home__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      color: #a01a1a;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid #eee;
    }

    .page-phmacao-club-home__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-phmacao-club-home__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phmacao-club-home__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-phmacao-club-home__faq-item.active .page-phmacao-club-home__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus rotation */
    }

    .page-phmacao-club-home__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: #555;
      background-color: #fff;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-phmacao-club-home__section {
        padding: 30px 15px;
      }

      .page-phmacao-club-home__section-title {
        font-size: 2em;
      }

      .page-phmacao-club-home__hero-title {
        font-size: 2.2em;
      }

      .page-phmacao-club-home__hero-subtitle {
        font-size: 1.2em;
      }

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

      /* Floating buttons for smaller screens */
      .page-phmacao-club-home__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px); /* Adjust width to fit screen */
        bottom: 15px;
        left: 20px;
        right: 20px;
        justify-content: space-around;
        gap: 0; /* Remove gap when row */
      }

      .page-phmacao-club-home__floating-button {
        width: 45px;
        height: 45px;
        font-size: 0.8em;
      }

      /* Game Cards Mobile */
      .page-phmacao-club-home__game-grid {
        grid-template-columns: 1fr;
      }

      .page-phmacao-club-home__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phmacao-club-home__game-card-image-wrapper {
        height: 180px;
      }

      /* Promotions Mobile */
      .page-phmacao-club-home__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-phmacao-club-home__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phmacao-club-home__promo-image-wrapper {
        height: 150px;
      }

      /* Features Mobile */
      .page-phmacao-club-home__features-grid {
        grid-template-columns: 1fr;
      }

      .page-phmacao-club-home__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Logo Grid Mobile */
      .page-phmacao-club-home__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-phmacao-club-home__logo-item {
        height: 80px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px;
      }

      .page-phmacao-club-home__logo-image {
        max-height: 60px;
      }

      /* FAQ Mobile */
      .page-phmacao-club-home__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

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

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

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

      .page-phmacao-club-home__hero-title {
        font-size: 1.8em;
      }

      .page-phmacao-club-home__hero-subtitle {
        font-size: 1em;
      }

      .page-phmacao-club-home__floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
      }

      .page-phmacao-club-home__floating-button {
        width: 40px;
        height: 40px;
        font-size: 0.75em;
      }

      .page-phmacao-club-home__game-card-title,
      .page-phmacao-club-home__promo-title,
      .page-phmacao-club-home__feature-title {
        font-size: 1.1em;
      }

      .page-phmacao-club-home__game-card-description,
      .page-phmacao-club-home__promo-description,
      .page-phmacao-club-home__feature-description {
        font-size: 0.85em;
      }
    }
  