
    :root {
      --page-ph7slot-primary-bg: #1a2a3a; /* Dark Blue */
      --page-ph7slot-secondary-bg: #0d1a26; /* Even Darker Blue */
      --page-ph7slot-accent-color: #f7d353; /* Gold/Yellow */
      --page-ph7slot-text-color: #ffffff; /* White */
      --page-ph7slot-light-text: #e0e0e0;
      --page-ph7slot-border-color: #4a5a6a;
      --page-ph7slot-button-hover: #e6c242;
    }

    .page-ph7slot {
      font-family: 'Arial', sans-serif;
      color: var(--page-ph7slot-text-color);
      background-color: var(--page-ph7slot-primary-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    .page-ph7slot__section--dark {
      background-color: var(--page-ph7slot-secondary-bg);
    }

    .page-ph7slot__title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-ph7slot-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ph7slot__subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: var(--page-ph7slot-light-text);
    }

    .page-ph7slot__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-ph7slot-light-text);
    }

    .page-ph7slot__button {
      display: inline-block;
      background-color: var(--page-ph7slot-accent-color);
      color: var(--page-ph7slot-primary-bg);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ph7slot__button:hover {
      background-color: var(--page-ph7slot-button-hover);
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-ph7slot__hero-section {
      position: relative;
      padding-top: 120px; /* Desktop fixed header spacing */
      padding-bottom: 60px;
      background-color: var(--page-ph7slot-primary-bg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-ph7slot__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-ph7slot__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-ph7slot__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-ph7slot__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-ph7slot-accent-color);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-ph7slot__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-ph7slot-light-text);
    }

    /* About Section */
    .page-ph7slot__about-section {
      background-color: var(--page-ph7slot-secondary-bg);
    }

    .page-ph7slot__about-text {
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: var(--page-ph7slot-light-text);
    }

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

    .page-ph7slot__game-card {
      background-color: var(--page-ph7slot-primary-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-ph7slot-border-color);
    }

    .page-ph7slot__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    }

    .page-ph7slot__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-ph7slot__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-ph7slot__game-content {
      padding: 20px;
    }

    .page-ph7slot__game-title {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-ph7slot-accent-color);
    }

    .page-ph7slot__game-description {
      font-size: 0.95em;
      color: var(--page-ph7slot-light-text);
      margin-bottom: 15px;
    }

    .page-ph7slot__game-link {
      display: inline-block;
      color: var(--page-ph7slot-accent-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-ph7slot__game-link:hover {
      color: var(--page-ph7slot-button-hover);
      text-decoration: underline;
    }

    /* Bonuses Section */
    .page-ph7slot__bonuses-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-ph7slot__bonus-card {
      background-color: var(--page-ph7slot-primary-bg);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      text-align: center;
      flex: 1 1 300px;
      max-width: 380px;
      border: 1px solid var(--page-ph7slot-border-color);
    }

    .page-ph7slot__bonus-title {
      font-size: 1.8em;
      color: var(--page-ph7slot-accent-color);
      margin-bottom: 15px;
    }

    .page-ph7slot__bonus-text {
      color: var(--page-ph7slot-light-text);
      margin-bottom: 25px;
    }

    /* Providers Section */
    .page-ph7slot__providers-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-ph7slot__provider-logo-wrapper {
      width: 100%;
      max-width: 150px; /* Each logo container */
      overflow: hidden;
      box-sizing: border-box;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
      border: 1px solid var(--page-ph7slot-border-color);
    }

    .page-ph7slot__provider-logo-wrapper:hover {
      transform: translateY(-5px);
      background-color: rgba(255, 255, 255, 0.1);
    }

    .page-ph7slot__provider-logo {
      width: 100%;
      height: auto;
      max-height: 80px; /* Ensure logos are not too large */
      object-fit: contain;
      display: block;
    }

    /* Login Section */
    .page-ph7slot__login-form {
      background-color: var(--page-ph7slot-primary-bg);
      padding: 40px;
      border-radius: 10px;
      max-width: 500px;
      margin: 40px auto 0 auto;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--page-ph7slot-border-color);
      text-align: left;
    }

    .page-ph7slot__form-group {
      margin-bottom: 20px;
    }

    .page-ph7slot__form-label {
      display: block;
      margin-bottom: 8px;
      color: var(--page-ph7slot-light-text);
      font-weight: bold;
    }

    .page-ph7slot__form-input {
      width: calc(100% - 20px);
      padding: 12px 10px;
      border: 1px solid var(--page-ph7slot-border-color);
      border-radius: 5px;
      background-color: var(--page-ph7slot-secondary-bg);
      color: var(--page-ph7slot-text-color);
      font-size: 1em;
    }

    .page-ph7slot__form-input::placeholder {
      color: #999;
    }

    .page-ph7slot__form-button {
      width: 100%;
      padding: 15px;
      background-color: var(--page-ph7slot-accent-color);
      color: var(--page-ph7slot-primary-bg);
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-ph7slot__form-button:hover {
      background-color: var(--page-ph7slot-button-hover);
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-ph7slot__faq-section {
      background-color: var(--page-ph7slot-secondary-bg);
    }

    .page-ph7slot__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-ph7slot__faq-item {
      background-color: var(--page-ph7slot-primary-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-ph7slot-border-color);
    }

    .page-ph7slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-ph7slot-primary-bg);
      color: var(--page-ph7slot-accent-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ph7slot__faq-question:hover {
      background-color: rgba(var(--page-ph7slot-accent-color), 0.1);
    }

    .page-ph7slot__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: inherit; /* Ensure color is inherited from parent */
    }

    .page-ph7slot__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-ph7slot-accent-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-ph7slot__faq-item.active .page-ph7slot__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar effect */
    }

    .page-ph7slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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(--page-ph7slot-light-text);
      background-color: var(--page-ph7slot-secondary-bg);
    }

    .page-ph7slot__faq-item.active .page-ph7slot__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Floating Login Button (Mobile Only) */
    .page-ph7slot__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-ph7slot-accent-color);
      color: var(--page-ph7slot-primary-bg);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: none; /* Hidden by default, shown on mobile */
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-ph7slot__floating-login-button:hover {
      background-color: var(--page-ph7slot-button-hover);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ph7slot__hero-section {
        padding-top: 100px !important; /* Mobile fixed header spacing */
      }

      .page-ph7slot__title {
        font-size: 2em;
      }

      .page-ph7slot__subtitle {
        font-size: 1.4em;
      }

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

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

      .page-ph7slot__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-ph7slot__bonus-card {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .page-ph7slot__provider-logo-wrapper {
        max-width: 120px;
      }

      .page-ph7slot__login-form {
        padding: 30px 20px;
      }

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

      .page-ph7slot__faq-answer {
        padding: 0 20px;
      }

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

      .page-ph7slot__floating-login-button {
        display: block; /* Show on mobile */
      }

      /* Ensure all images are responsive on mobile */
      .page-ph7slot img {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-ph7slot__hero-image-wrapper,
      .page-ph7slot__game-image-wrapper,
      .page-ph7slot__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-ph7slot__hero-title {
        font-size: 2em;
      }
      .page-ph7slot__hero-subtitle {
        font-size: 1em;
      }
      .page-ph7slot__title {
        font-size: 1.8em;
      }
    }
  