 /* Same beautiful responsive & animated styles as before */
    .affiliate-stack-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .aff-link-list { display: flex; flex-direction: column; gap: 18px; padding: 0; margin: 0; list-style: none; }
    .aff-link-item {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
      border: 1px solid #f0f0f0;
      animation: affFadeInUp 0.6s ease forwards;
    }
    .aff-link-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: #ffacac; }
    .aff-link-wrapper {
      display: flex; align-items: center; padding: 20px 24px;
      text-decoration: none; color: inherit; position: relative; overflow: hidden;
    }
    .aff-link-wrapper::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(120deg, rgba(124,58,237,0.05), transparent 50%);
      opacity: 0; transition: opacity 0.4s; pointer-events: none;
    }
    .aff-link-item:hover .aff-link-wrapper::before { opacity: 1; }
    .aff-icon-box {
      width: 64px; height: 64px; border-radius: 14px; display: flex;
      align-items: center; justify-content: center; margin-right: 20px; flex-shrink: 0;
      background: #fff; padding: 8px; box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    .aff-icon { width: 100%; height: 100%; object-fit: contain; }
    .aff-content { flex: 1; min-width: 0; }
    .aff-title { font-size: 1.25rem; font-weight: 600; margin: 0 0 6px; color: #1a1a1a; }
    .aff-desc { font-size: 0.95rem; color: #666; margin: 0; line-height: 1.4; }
    .aff-arrow { margin-left: auto; font-size: 1.5rem; color: #999; transition: all 0.3s; opacity: 0.7; }
    .aff-link-item:hover .aff-arrow { transform: translateX(8px); color: #ed3a3a; opacity: 1; }

    /* Responsive */
    @media (max-width: 768px) {
      .aff-link-wrapper { padding: 18px 20px; }
      .aff-icon-box { width: 56px; height: 56px; }
      .aff-title { font-size: 1.15rem; }
    }
    @media (max-width: 480px) {
      .aff-link-wrapper { padding: 16px; }
      .aff-title { font-size: 1.1rem; }
      .aff-desc { font-size: 0.9rem; }
    }
    @keyframes affFadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
    .aff-link-item:nth-child(1) { animation-delay: 0.1s; }
    .aff-link-item:nth-child(2) { animation-delay: 0.2s; }
    .aff-link-item:nth-child(3) { animation-delay: 0.3s; }
    .aff-link-item:nth-child(4) { animation-delay: 0.4s; }
    .aff-link-item:nth-child(5) { animation-delay: 0.5s; }
    .aff-link-item:nth-child(6) { animation-delay: 0.6s; }
    .aff-link-item:nth-child(7) { animation-delay: 0.7s; }
    .aff-link-item:nth-child(8) { animation-delay: 0.8s; }

     .voidFooterRealm {
            width: 100%;
            background-color: #000;
            color: #fff;
            padding: clamp(20px, 3vw, 30px) clamp(10px, 1.5vw, 20px);
            font-family: -apple-system, BlinkMacSystemFont, sans-serif;
            box-sizing: border-box;
        }

        /* Main footer content wrapper */
        .nebulaFooterCore {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: clamp(10px, 2vw, 20px);
            align-items: flex-start;
        }

        /* Logo section */
        .lunarLogoHub {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .lunarLogoHub a {
            display: inline-block;
        }

        .lunarLogoHub img {
            width: clamp(80px, 15vw, 120px);
            height: auto;
            filter: brightness(0) invert(1);
        }

        .lunarLogoHub p {
            font-size: clamp(10px, 2vw, 12px);
            opacity: 0.7;
            margin: 0;
            line-height: 1.3;
        }

        /* Navigation links */
        .astroNavCluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: clamp(6px, 1vw, 8px);
        }

        .astroNavCluster ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .astroNavCluster li {
            margin-bottom: 6px;
        }

        .astroNavCluster a {
            color: #fff;
            text-decoration: none;
            font-size: clamp(11px, 2vw, 13px);
            font-weight: 500;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .astroNavCluster a:hover {
            color: #007bff;
            transform: translateX(4px);
        }

        /* Social media section */
        .cosmicSocialSphere {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cosmicSocialSphere h3 {
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 600;
            margin: 0;
        }

        .stellarSocialIcons {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(6px, 1vw, 8px);
        }

        .stellarSocialIcons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .stellarSocialIcons a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .stellarSocialIcons svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .nebulaFooterCore {
                grid-template-columns: 1fr 1fr;
                gap: clamp(8px, 1.5vw, 15px);
            }

            .cosmicSocialSphere {
                grid-column: 1 / -1;
                align-items: center;
                text-align: center;
            }

            .stellarSocialIcons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .voidFooterRealm {
                padding: clamp(10px, 2vw, 20px) clamp(8px, 1vw, 15px);
            }

            .nebulaFooterCore {
                grid-template-columns: 1fr;
                gap: clamp(10px, 2vw, 15px);
            }

            .lunarLogoHub {
                align-items: center;
                text-align: center;
            }

            .astroNavCluster {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
                justify-items: center;
            }

            .astroNavCluster ul {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .voidFooterRealm {
                padding: clamp(8px, 1.5vw, 15px) clamp(5px, 0.75vw, 10px);
            }

            .lunarLogoHub img {
                width: clamp(60px, 20vw, 100px);
            }

            .lunarLogoHub p {
                font-size: clamp(9px, 2vw, 11px);
            }

            .astroNavCluster {
                grid-template-columns: 1fr;
            }

            .astroNavCluster ul {
                margin-bottom: 8px;
            }

            .astroNavCluster a {
                font-size: clamp(10px, 2vw, 12px);
            }

            .cosmicSocialSphere h3 {
                font-size: clamp(12px, 2.5vw, 14px);
            }

            .stellarSocialIcons a {
                width: 28px;
                height: 28px;
            }

            .stellarSocialIcons svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 360px) {
            .voidFooterRealm {
                padding: clamp(5px, 1.5vw, 10px) clamp(3px, 0.75vw, 5px);
            }

            .lunarLogoHub img {
                width: clamp(50px, 20vw, 80px);
            }

            .lunarLogoHub p {
                font-size: clamp(8px, 2vw, 10px);
            }

            .astroNavCluster a {
                font-size: clamp(9px, 2vw, 11px);
            }

            .cosmicSocialSphere h3 {
                font-size: clamp(11px, 2.5vw, 13px);
            }

            .stellarSocialIcons a {
                width: 24px;
                height: 24px;
            }

            .stellarSocialIcons svg {
                width: 14px;
                height: 14px;
            }
        }