
    :root {
      --phmacao-primary-color: #f1c40f; /* Gold/Yellow */
      --phmacao-secondary-color: #e67e22; /* Orange */
      --phmacao-dark-background: #1a1a1a; /* Dark Grey */
      --phmacao-light-text: #ffffff; /* White */
      --phmacao-medium-grey: #333333; /* Medium Grey */
      --phmacao-light-grey: #cccccc; /* Light Grey */
      --phmacao-accent-green: #2ecc71; /* Green for success/active */
      --phmacao-accent-red: #e74c3c; /* Red for warnings */
    }

    /* Base styles for the page content */
    .page-phmacao-online-casino {
      font-family: 'Arial', sans-serif;
      color: var(--phmacao-light-text);
      background-color: var(--phmacao-dark-background);
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body has header offset */
    }

    .page-phmacao-online-casino__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-phmacao-online-casino__section--dark {
      background-color: var(--phmacao-medium-grey);
    }

    .page-phmacao-online-casino__section-title {
      font-size: 2.8em;
      color: var(--phmacao-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
    }

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

    .page-phmacao-online-casino__section-subtitle {
      font-size: 1.5em;
      color: var(--phmacao-light-grey);
      margin-bottom: 40px;
      font-weight: normal;
    }

    /* Hero Section */
    .page-phmacao-online-casino__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:phmacao,casino,online,promotion,jackpot]') no-repeat center center / cover;
      padding: 120px 20px;
      color: var(--phmacao-light-text);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 600px;
      position: relative;
      overflow: hidden;
    }

    .page-phmacao-online-casino__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-phmacao-online-casino__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-phmacao-online-casino__hero-title {
      font-size: 4em;
      margin-bottom: 20px;
      color: var(--phmacao-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.1;
      font-weight: bold;
    }

    .page-phmacao-online-casino__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      color: var(--phmacao-light-grey);
      font-weight: lighter;
    }

    .page-phmacao-online-casino__cta-button {
      display: inline-block;
      background-color: var(--phmacao-secondary-color);
      color: var(--phmacao-light-text);
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-phmacao-online-casino__cta-button:hover {
      background-color: #d35400; /* Darker orange */
      transform: translateY(-3px);
    }

    /* Floating Register/Login Buttons */
    .page-phmacao-online-casino__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-phmacao-online-casino__floating-button {
      background-color: var(--phmacao-primary-color);
      color: var(--phmacao-dark-background);
      padding: 15px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      text-decoration: none; /* Ensure it looks like a button */
    }

    .page-phmacao-online-casino__floating-button--login {
      background-color: var(--phmacao-accent-green);
      color: var(--phmacao-light-text);
    }

    .page-phmacao-online-casino__floating-button:hover {
      transform: translateY(-2px);
      filter: brightness(1.1);
    }

    /* Games Section */
    .page-phmacao-online-casino__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phmacao-online-casino__game-card {
      background-color: var(--phmacao-medium-grey);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-phmacao-online-casino__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-phmacao-online-casino__game-card-image {
      width: 100%;
      height: 220px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid var(--phmacao-primary-color);
    }

    .page-phmacao-online-casino__game-card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phmacao-online-casino__game-card-title {
      font-size: 1.6em;
      color: var(--phmacao-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phmacao-online-casino__game-card-description {
      font-size: 0.95em;
      color: var(--phmacao-light-grey);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-phmacao-online-casino__game-card-button {
      background-color: var(--phmacao-secondary-color);
      color: var(--phmacao-light-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      width: 100%;
      text-align: center;
      display: block; /* Make it a block element for full width */
    }

    .page-phmacao-online-casino__game-card-button:hover {
      background-color: #d35400;
      transform: translateY(-2px);
    }

    /* Promotions Section */
    .page-phmacao-online-casino__promotion-item {
      background-color: var(--phmacao-medium-grey);
      border-radius: 15px;
      margin-bottom: 30px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
    }

    .page-phmacao-online-casino__promotion-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-bottom: 4px solid var(--phmacao-primary-color);
    }

    .page-phmacao-online-casino__promotion-content {
      padding: 30px;
      flex-grow: 1;
    }

    .page-phmacao-online-casino__promotion-title {
      font-size: 2em;
      color: var(--phmacao-primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-phmacao-online-casino__promotion-description {
      font-size: 1.1em;
      color: var(--phmacao-light-grey);
      margin-bottom: 25px;
    }

    /* Providers/Payments Section */
    .page-phmacao-online-casino__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-phmacao-online-casino__logo-item {
      background-color: var(--phmacao-medium-grey);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
      width: 100%;
      box-sizing: border-box;
    }

    .page-phmacao-online-casino__logo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-online-casino__logo-image {
      max-width: 100%;
      max-height: 80px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-phmacao-online-casino__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-phmacao-online-casino__faq-item {
      background-color: var(--phmacao-medium-grey);
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-phmacao-online-casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2c3e50; /* Slightly darker for question header */
      cursor: pointer;
      color: var(--phmacao-light-text);
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-phmacao-online-casino__faq-question h3 {
      margin: 0;
      color: var(--phmacao-primary-color);
      font-size: 1em; /* Adjust to match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-phmacao-online-casino__faq-question:hover {
      background-color: #34495e; /* Even darker on hover */
    }

    .page-phmacao-online-casino__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--phmacao-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-phmacao-online-casino__faq-item.active .page-phmacao-online-casino__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
    }

    .page-phmacao-online-casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: var(--phmacao-light-grey);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

    .page-phmacao-online-casino__faq-item.active .page-phmacao-online-casino__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important; /* Adjusted padding for active state */
      opacity: 1;
    }
    
    .page-phmacao-online-casino__faq-answer p {
        margin-bottom: 10px;
    }
    .page-phmacao-online-casino__faq-answer p:last-child {
        margin-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 992px) {
      .page-phmacao-online-casino__hero-title {
        font-size: 3.2em;
      }
      .page-phmacao-online-casino__hero-description {
        font-size: 1.3em;
      }
      .page-phmacao-online-casino__section-title {
        font-size: 2.2em;
      }
      .page-phmacao-online-casino__section-subtitle {
        font-size: 1.3em;
      }
      .page-phmacao-online-casino__promotion-item {
        flex-direction: column;
      }
      .page-phmacao-online-casino__promotion-image {
        height: 250px;
      }
    }

    @media (max-width: 768px) {
      .page-phmacao-online-casino__section {
        padding: 40px 15px;
      }
      .page-phmacao-online-casino__hero-section {
        padding: 80px 15px;
        min-height: 450px;
      }
      .page-phmacao-online-casino__hero-title {
        font-size: 2.5em;
      }
      .page-phmacao-online-casino__hero-description {
        font-size: 1.1em;
      }
      .page-phmacao-online-casino__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      .page-phmacao-online-casino__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-phmacao-online-casino__floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-phmacao-online-casino__section-title {
        font-size: 1.8em;
      }
      .page-phmacao-online-casino__section-subtitle {
        font-size: 1.1em;
      }

      /* List item responsive requirements */
      .page-phmacao-online-casino__games-grid,
      .page-phmacao-online-casino__logo-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }

      .page-phmacao-online-casino__game-card,
      .page-phmacao-online-casino__logo-item,
      .page-phmacao-online-casino__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phmacao-online-casino__game-card-image,
      .page-phmacao-online-casino__promotion-image,
      .page-phmacao-online-casino__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-phmacao-online-casino__game-card-content,
      .page-phmacao-online-casino__promotion-content,
      .page-phmacao-online-casino__logo-item {
        padding: 15px !important; /* Reduce padding for smaller screens */
      }

      .page-phmacao-online-casino__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-phmacao-online-casino__faq-question h3 {
        font-size: 0.9em;
      }

      .page-phmacao-online-casino__faq-answer {
        padding: 0 20px;
        font-size: 0.9em;
      }
      .page-phmacao-online-casino__faq-item.active .page-phmacao-online-casino__faq-answer {
        padding: 15px 20px !important;
      }
      
      .page-phmacao-online-casino__game-card-description,
      .page-phmacao-online-casino__promotion-description,
      .page-phmacao-online-casino__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-phmacao-online-casino__hero-title {
        font-size: 2em;
      }
      .page-phmacao-online-casino__hero-description {
        font-size: 1em;
      }
      .page-phmacao-online-casino__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-phmacao-online-casino__section-title {
        font-size: 1.5em;
      }
      .page-phmacao-online-casino__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        justify-content: space-around;
      }
      .page-phmacao-online-casino__floating-button {
        flex: 1;
        max-width: 48%;
      }
    }
  