
    /* Base styles for the page */
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red for branding */
      --secondary-color: #f7b731; /* A bright yellow for accents */
      --text-dark: #333333;
      --text-light: #ffffff;
      --background-light: #f8f8f8;
      --background-dark: #2c3e50; /* Dark blue-grey for contrast sections */
      --border-color: #e0e0e0;
      --shadow-light: rgba(0, 0, 0, 0.1);
      --shadow-strong: rgba(0, 0, 0, 0.2);
    }

    .page-hmn-599 {
      font-family: 'Arial', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: var(--background-light);
      padding-bottom: 40px; /* Ensure space before footer */
    }

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

    .page-hmn-599__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-hmn-599__section--dark {
      background-color: var(--background-dark);
      color: var(--text-light);
    }

    .page-hmn-599__section--dark h2,
    .page-hmn-599__section--dark h3 {
      color: var(--text-light);
    }

    .page-hmn-599__heading {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-hmn-599__subheading {
      font-size: 1.8em;
      color: var(--text-dark);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-hmn-599__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-hmn-599__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-hmn-599__button:hover {
      background-color: #c74120; /* Slightly darker primary color */
    }

    /* Hero Section */
    .page-hmn-599__hero-section {
      position: relative;
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 10px 0 80px 0; /* Add 10px padding-top as per fixed nav bar requirement */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      text-align: center;
    }

    .page-hmn-599__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-hmn-599__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-hmn-599__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--secondary-color);
    }

    .page-hmn-599__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    /* Features Section */
    .page-hmn-599__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-hmn-599__feature-card {
      background-color: var(--text-light);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-hmn-599__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--shadow-strong);
    }

    .page-hmn-599__feature-icon {
      width: 200px; /* Enforced min width for image placeholders */
      height: 200px; /* Enforced min height for image placeholders */
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-hmn-599__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-hmn-599__feature-description {
      font-size: 1em;
      color: var(--text-dark);
    }

    /* Game Showcase Section */
    .page-hmn-599__game-showcase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-hmn-599__game-card {
      background-color: var(--text-light);
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--shadow-light);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-hmn-599__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--shadow-strong);
    }

    .page-hmn-599__game-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto; /* Ensure responsiveness */
    }

    .page-hmn-599__game-info {
      padding: 20px;
    }

    .page-hmn-599__game-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-hmn-599__game-provider {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
    }

    /* CTA Section */
    .page-hmn-599__cta-section {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 80px 0;
      text-align: center;
    }

    .page-hmn-599__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--text-light);
    }

    .page-hmn-599__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Payment Methods Section */
    .page-hmn-599__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-hmn-599__payment-item {
      background-color: var(--text-light);
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--shadow-light);
      font-weight: bold;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 10px;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-hmn-599__payment-icon {
      width: 200px; /* Enforced min width for image placeholders */
      height: 100px; /* Enforced min height for image placeholders */
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    /* FAQ Section */
    .page-hmn-599__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hmn-599__faq-item {
      background-color: var(--text-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }

    .page-hmn-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-hmn-599__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-hmn-599__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--text-dark);
      pointer-events: none; /* Prevent h3 from interfering with click event */
      flex-grow: 1;
    }

    .page-hmn-599__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
      transition: transform 0.3s ease;
    }

    .page-hmn-599__faq-item.active .page-hmn-599__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-hmn-599__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(--text-dark);
    }

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

    .page-hmn-599__faq-answer p {
      margin-bottom: 10px;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-hmn-599__heading {
        font-size: 2.2em;
      }

      .page-hmn-599__subheading {
        font-size: 1.5em;
      }

      .page-hmn-599__hero-title {
        font-size: 2.5em;
      }

      .page-hmn-599__hero-description {
        font-size: 1.1em;
      }

      .page-hmn-599__features-grid,
      .page-hmn-599__game-showcase-grid {
        grid-template-columns: 1fr;
      }

      /* List item mobile responsiveness */
      .page-hmn-599__feature-card,
      .page-hmn-599__game-card,
      .page-hmn-599__payment-item,
      .page-hmn-599__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-hmn-599__payment-grid {
        justify-content: space-around;
      }

      .page-hmn-599__game-image {
        height: 200px;
      }

      .page-hmn-599__faq-question {
        padding: 15px 20px;
      }

      .page-hmn-599__faq-question h3 {
        font-size: 1.1em;
      }

      .page-hmn-599__faq-answer {
        padding: 0 20px;
      }

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

      /* Image responsiveness */
      .page-hmn-599__hero-background,
      .page-hmn-599__feature-icon,
      .page-hmn-599__game-image,
      .page-hmn-599__payment-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-hmn-599__hero-section,
      .page-hmn-599__features-section,
      .page-hmn-599__game-showcase-section,
      .page-hmn-599__cta-section,
      .page-hmn-599__payment-section,
      .page-hmn-599__faq-section {
          width: 100% !important;
          max-width: 100% !important;
          overflow-x: hidden !important; /* Prevent horizontal scroll */
          box-sizing: border-box !important;
      }
      .page-hmn-599__container {
          padding: 0 10px; /* Smaller padding on mobile */
      }
    }

    @media (max-width: 480px) {
      .page-hmn-599__hero-title {
        font-size: 2em;
      }
      .page-hmn-599__hero-description {
        font-size: 1em;
      }
      .page-hmn-599__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-hmn-599__cta-title {
        font-size: 2em;
      }
      .page-hmn-599__cta-description {
        font-size: 1em;
      }
    }
  