
    .page-free7mcn {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for sticky buttons */
    }

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

    .page-free7mcn__hero-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
      padding: 60px 0;
      text-align: center;
      padding-top: 10px; /* Minimal top padding, assuming body handles header offset */
    }

    .page-free7mcn__hero-title {
      font-size: 2.8em;
      color: #e94560;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__hero-subtitle {
      font-size: 1.2em;
      color: #c0c0c0;
      max-width: 800px;
      margin: 0 auto 30px auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__button {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-free7mcn__button:hover {
      background-color: #c9344c;
    }

    .page-free7mcn__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-free7mcn__section-title {
      font-size: 2em;
      color: #e94560;
      margin-bottom: 30px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-free7mcn__card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: left;
    }

    .page-free7mcn__card:hover {
      transform: translateY(-5px);
    }

    .page-free7mcn__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-free7mcn__card-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__card-description {
      font-size: 0.9em;
      color: #c0c0c0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-free7mcn__features-item {
      background-color: #0f3460;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__features-item h3 {
      color: #e94560;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-free7mcn__faq-section {
      padding: 40px 0;
      text-align: left;
    }

    .page-free7mcn__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
    }

    .page-free7mcn__faq-item {
      background-color: #0f3460;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-free7mcn__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #1a1a2e;
      color: #f0f0f0;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__faq-question:hover {
      background-color: #2a2a4a;
    }

    .page-free7mcn__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #f0f0f0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
      color: #e94560;
    }

    .page-free7mcn__faq-item.active .page-free7mcn__faq-toggle {
      transform: rotate(45deg);
    }

    .page-free7mcn__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: #c0c0c0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-free7mcn__faq-item.active .page-free7mcn__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-free7mcn__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: #0f3460;
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-free7mcn__sticky-button {
      flex: 1;
      margin: 0 5px;
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 10px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-free7mcn__sticky-button:hover {
      background-color: #c9344c;
    }

    .page-free7mcn__payment-providers, .page-free7mcn__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-free7mcn__provider-logo {
      width: 100px;
      height: 60px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-free7mcn__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-free7mcn__hero-title {
        font-size: 2em;
      }

      .page-free7mcn__hero-subtitle {
        font-size: 1em;
      }

      .page-free7mcn__section-title {
        font-size: 1.6em;
      }

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

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

      .page-free7mcn__features-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }
      .page-free7mcn__features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-free7mcn__card-image {
        height: 180px;
      }

      .page-free7mcn__faq-question {
        padding: 12px 15px;
      }

      .page-free7mcn__faq-question h3 {
        font-size: 1em;
      }

      .page-free7mcn__faq-answer {
        padding: 15px !important;
      }

      .page-free7mcn__sticky-button {
        font-size: 0.9em;
        padding: 10px 5px;
      }

      .page-free7mcn__provider-logo {
        width: 80px;
        height: 50px;
      }

      img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-free7mcn__card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }
  