
    :root {
      --ph7-primary-color: #e03a3a; /* Red */
      --ph7-secondary-color: #ffc107; /* Yellow/Gold */
      --ph7-dark-bg: #1a1a1a; /* Dark background */
      --ph7-light-text: #ffffff; /* Light text */
      --ph7-gray-text: #cccccc; /* Gray text */
      --ph7-card-bg: #2a2a2a; /* Card background */
      --ph7-border-color: #3a3a3a; /* Border color */
    }

    .page-ph7casino {
      font-family: 'Arial', sans-serif;
      color: var(--ph7-light-text);
      background-color: var(--ph7-dark-bg);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from layout shifts */
    }

    /* Fixed header spacing */
    .page-ph7casino__hero-section {
      padding-top: 120px; /* Desktop spacing for fixed header */
    }

    @media (max-width: 768px) {
      .page-ph7casino__hero-section {
        padding-top: 100px; /* Mobile spacing for fixed header */
      }
    }

    .page-ph7casino__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-ph7casino__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-ph7casino__section-title {
      font-size: 2.5em;
      color: var(--ph7-secondary-color);
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-ph7casino__section-title strong {
      color: var(--ph7-primary-color);
    }

    .page-ph7casino__hero-section {
      position: relative;
      background-color: #000;
      padding-bottom: 60px; /* Add padding below image content */
    }

    .page-ph7casino__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      text-align: center;
      margin-bottom: 20px; /* Space between image and text */
    }

    .page-ph7casino__hero-image {
      display: block;
      margin: 0 auto;
      max-width: 100%;
      height: auto;
      object-fit: contain; /* Ensure image is not stretched and maintains aspect ratio */
      border-radius: 8px;
    }

    .page-ph7casino__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      text-align: center;
      color: var(--ph7-light-text);
    }

    .page-ph7casino__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--ph7-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ph7casino__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--ph7-gray-text);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-ph7casino__button {
      display: inline-block;
      background-color: var(--ph7-primary-color);
      color: var(--ph7-light-text);
      padding: 15px 30px;
      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-ph7casino__button:hover {
      background-color: #c42d2d;
      transform: translateY(-3px);
    }

    .page-ph7casino__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--ph7-primary-color);
      color: var(--ph7-light-text);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: pulse 2s infinite;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      line-height: 1.3;
      border: 2px solid var(--ph7-secondary-color); /* Added border */
    }

    .page-ph7casino__floating-button:hover {
      background-color: #c42d2d;
      transform: scale(1.05);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    .page-ph7casino__games-grid,
    .page-ph7casino__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ph7casino__game-card,
    .page-ph7casino__provider-card {
      background-color: var(--ph7-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--ph7-border-color);
    }

    .page-ph7casino__game-card:hover,
    .page-ph7casino__provider-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-ph7casino__game-card-image-wrapper,
    .page-ph7casino__provider-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #000; /* Dark background for images */
    }

    .page-ph7casino__game-card-image,
    .page-ph7casino__provider-card-image {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure image fits without cropping */
    }

    .page-ph7casino__game-card-content,
    .page-ph7casino__provider-card-content {
      padding: 20px;
    }

    .page-ph7casino__game-card-title,
    .page-ph7casino__provider-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--ph7-secondary-color);
      text-decoration: none; /* Ensure link doesn't have default underline */
      display: block; /* Make the whole title clickable */
    }

    .page-ph7casino__game-card-title a,
    .page-ph7casino__provider-card-title a {
      color: var(--ph7-secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-ph7casino__game-card-title a:hover,
    .page-ph7casino__provider-card-title a:hover {
      color: var(--ph7-primary-color);
    }

    .page-ph7casino__game-card-description {
      font-size: 0.95em;
      color: var(--ph7-gray-text);
      margin-bottom: 15px;
    }

    .page-ph7casino__promo-card {
      background-color: var(--ph7-card-bg);
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--ph7-border-color);
      text-align: left;
    }

    .page-ph7casino__promo-card h3 {
      color: var(--ph7-primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-ph7casino__promo-card p {
      color: var(--ph7-gray-text);
      margin-bottom: 15px;
    }

    .page-ph7casino__how-to-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-ph7casino__how-to-item {
      background-color: var(--ph7-card-bg);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
      text-align: left;
      border: 1px solid var(--ph7-border-color);
    }

    .page-ph7casino__how-to-item h3 {
      color: var(--ph7-secondary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-ph7casino__how-to-item p {
      color: var(--ph7-gray-text);
    }

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

    .page-ph7casino__payment-method-item {
      background-color: var(--ph7-card-bg);
      border-radius: 8px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ph7-light-text);
      font-weight: bold;
      border: 1px solid var(--ph7-border-color);
      min-width: 120px; /* Ensure minimum width for smaller methods */
      justify-content: center;
    }

    .page-ph7casino__payment-method-icon-wrapper {
        width: 60px; /* Larger icon wrapper */
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .page-ph7casino__payment-method-icon {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-ph7casino__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-ph7casino__faq-item {
      background-color: var(--ph7-card-bg);
      border: 1px solid var(--ph7-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-ph7casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #333;
      color: var(--ph7-light-text);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ph7casino__faq-question:hover {
      background-color: #444;
    }

    .page-ph7casino__faq-question h3 {
      margin: 0;
      color: var(--ph7-secondary-color);
      font-size: 1.2em; /* Keep font size consistent with parent */
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

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

    .page-ph7casino__faq-item.active .page-ph7casino__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
      color: var(--ph7-light-text);
    }

    .page-ph7casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: var(--ph7-gray-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-ph7casino__faq-item.active .page-ph7casino__faq-answer {
      max-height: 2000px !important; /* Use !important as per requirement */
      padding: 20px !important; /* Use !important as per requirement */
      opacity: 1;
    }

    /* General paragraphs within sections */
    .page-ph7casino__section p {
      color: var(--ph7-gray-text);
      margin-bottom: 20px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-ph7casino__section {
        padding: 40px 0;
      }

      .page-ph7casino__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-ph7casino__hero-title {
        font-size: 2.5em;
      }

      .page-ph7casino__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-ph7casino__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-ph7casino__games-grid,
      .page-ph7casino__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
      }

      .page-ph7casino__game-card-image-wrapper,
      .page-ph7casino__provider-card-image-wrapper {
        height: 160px;
      }

      .page-ph7casino__game-card-title,
      .page-ph7casino__provider-card-title {
        font-size: 1.3em;
      }

      .page-ph7casino__promo-card {
        padding: 20px;
      }

      .page-ph7casino__promo-card h3 {
        font-size: 1.5em;
      }

      .page-ph7casino__how-to-item {
        padding: 15px;
      }

      .page-ph7casino__how-to-item h3 {
        font-size: 1.2em;
      }

      .page-ph7casino__payment-method-item {
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-ph7casino__payment-method-icon-wrapper {
        width: 50px;
        height: 50px;
      }

      .page-ph7casino__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-ph7casino__faq-question h3 {
        font-size: 1.1em;
      }

      .page-ph7casino__faq-toggle {
        font-size: 1.5em;
      }

      .page-ph7casino__faq-answer {
        padding: 0 15px;
      }

      .page-ph7casino__faq-item.active .page-ph7casino__faq-answer {
        padding: 15px !important;
      }

      .page-ph7casino img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ph7casino__hero-image-wrapper,
      .page-ph7casino__game-card-image-wrapper,
      .page-ph7casino__provider-card-image-wrapper,
      .page-ph7casino__payment-method-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
  