
    .page-7-club-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-7-club-apk__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 380px;
    }

    .page-7-club-apk__floating-button {
      flex: 1;
      padding: 12px 15px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #fff;
      background-color: #007bff; /* Primary blue for contrast */
      border: none;
      font-size: 1rem;
    }

    .page-7-club-apk__floating-button--register {
      background-color: #28a745; /* Green for register */
    }

    .page-7-club-apk__floating-button--login {
      background-color: #ffc107; /* Yellow for login */
      color: #333;
    }

    .page-7-club-apk__floating-button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .page-7-club-apk__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px;
      padding-top: 10px; /* Small decorative top padding as body handles header offset */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
    }

    .page-7-club-apk__hero-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      line-height: 1.2;
    }

    .page-7-club-apk__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      opacity: 0.9;
    }

    .page-7-club-apk__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-7-club-apk__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-7-club-apk__hero-image {
      max-width: 100%;
      height: auto;
      margin-top: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      display: block;
      width: 100%;
      max-height: 350px;
      object-fit: contain;
    }

    .page-7-club-apk__section-title {
      font-size: 1.8em;
      color: #1a2a6c;
      text-align: center;
      margin: 40px 0 30px;
      padding: 0 15px;
      font-weight: bold;
    }

    .page-7-club-apk__features-section,
    .page-7-club-apk__games-showcase,
    .page-7-club-apk__download-guide,
    .page-7-club-apk__promotions-section,
    .page-7-club-apk__faq-section,
    .page-7-club-apk__final-cta-section {
      padding: 20px 15px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-7-club-apk__features-grid,
    .page-7-club-apk__games-grid,
    .page-7-club-apk__guide-steps,
    .page-7-club-apk__promotion-list {
      display: grid;
      gap: 20px;
      margin-bottom: 30px;
      padding: 0;
      list-style: none;
    }

    .page-7-club-apk__features-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-7-club-apk__games-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-7-club-apk__guide-steps {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-7-club-apk__promotion-list {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-7-club-apk__feature-item,
    .page-7-club-apk__game-card,
    .page-7-club-apk__guide-item,
    .page-7-club-apk__promotion-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-7-club-apk__feature-item:hover,
    .page-7-club-apk__game-card:hover,
    .page-7-club-apk__guide-item:hover,
    .page-7-club-apk__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-7-club-apk__feature-icon,
    .page-7-club-apk__game-image,
    .page-7-club-apk__guide-image,
    .page-7-club-apk__promotion-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      width: 100%; /* Ensure images fill their containers */
      min-height: 200px; /* Minimum height for content images */
    }

    .page-7-club-apk__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
    }

    .page-7-club-apk__feature-title,
    .page-7-club-apk__game-title,
    .page-7-club-apk__guide-title,
    .page-7-club-apk__promotion-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-7-club-apk__feature-text,
    .page-7-club-apk__game-description,
    .page-7-club-apk__guide-text,
    .page-7-club-apk__promotion-text {
      font-size: 0.95em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-7-club-apk__cta-button--centered {
      display: block;
      margin: 30px auto 0;
      width: fit-content;
    }

    .page-7-club-apk__promotions-intro {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
      color: #555;
      padding: 0 15px;
    }

    .page-7-club-apk__view-promotions-button {
      display: block;
      margin: 40px auto 0;
      padding: 12px 25px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 25px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .page-7-club-apk__view-promotions-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-7-club-apk__faq-container {
      margin-top: 30px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      background-color: #fff;
    }

    .page-7-club-apk__faq-item {
      border-bottom: 1px solid #eee;
    }

    .page-7-club-apk__faq-item:last-child {
      border-bottom: none;
    }

    .page-7-club-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 15px;
      cursor: pointer;
      background-color: #f9f9f9;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-7-club-apk__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-7-club-apk__faq-title {
      font-size: 1.1em;
      color: #333;
      margin: 0;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-7-club-apk__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

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

    .page-7-club-apk__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;
      background-color: #fff;
    }

    .page-7-club-apk__faq-item.active .page-7-club-apk__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-7-club-apk__faq-answer p {
      margin: 0;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-7-club-apk__final-cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #e6f2ff;
      border-radius: 15px;
      margin-top: 50px;
    }

    .page-7-club-apk__final-cta-description {
      font-size: 1.1em;
      color: #444;
      max-width: 800px;
      margin: 0 auto 30px;
      padding: 0 15px;
    }

    .page-7-club-apk__cta-button--large {
      padding: 18px 35px;
      font-size: 1.2em;
      background-color: #28a745;
      color: #fff;
    }

    .page-7-club-apk__cta-button--large:hover {
      background-color: #218838;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-7-club-apk__hero-title {
        font-size: 1.8em;
      }

      .page-7-club-apk__hero-description {
        font-size: 1em;
      }

      .page-7-club-apk__section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 20px;
      }

      .page-7-club-apk__floating-buttons {
        width: calc(100% - 30px);
        gap: 10px;
        bottom: 15px;
      }

      .page-7-club-apk__floating-button {
        padding: 10px 12px;
        font-size: 0.9em;
      }

      /* List Item Mobile Responsiveness */
      .page-7-club-apk__feature-item,
      .page-7-club-apk__game-card,
      .page-7-club-apk__guide-item,
      .page-7-club-apk__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }

      .page-7-club-apk__features-grid,
      .page-7-club-apk__games-grid,
      .page-7-club-apk__guide-steps,
      .page-7-club-apk__promotion-list {
        grid-template-columns: 1fr;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-7-club-apk__feature-text,
      .page-7-club-apk__game-description,
      .page-7-club-apk__guide-text,
      .page-7-club-apk__promotion-text {
        font-size: 0.9em;
      }

      .page-7-club-apk__faq-question {
        padding: 15px 10px;
      }

      .page-7-club-apk__faq-title {
        font-size: 1em;
      }

      .page-7-club-apk__faq-answer {
        padding: 0 10px;
      }

      .page-7-club-apk__faq-item.active .page-7-club-apk__faq-answer {
        padding: 15px 10px !important;
      }

      .page-7-club-apk__cta-button--large {
        padding: 15px 25px;
        font-size: 1.1em;
      }

      .page-7-club-apk__hero-image {
        height: auto;
        max-height: 250px;
      }
    }

    @media (min-width: 769px) {
      .page-7-club-apk__hero-title {
        font-size: 3em;
      }

      .page-7-club-apk__hero-description {
        font-size: 1.2em;
      }

      .page-7-club-apk__section-title {
        font-size: 2.2em;
      }
    }
  