/* =========================================================
   Home Top Divider
   首页顶部导航和内容之间的细长UI分隔模块
   ========================================================= */

.home-top-divider{
  width: 100%;
  margin: 12px 0 24px;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.home-top-divider__inner{
  position: relative;
  max-width: 1280px;
  height: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  border-radius: 999px;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.78),
    rgba(255,255,255,0.45)
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

/* 流光 */
.home-top-divider__inner::before{
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 26%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.22) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: homeTopDividerShine 6s linear infinite;
  pointer-events: none;
}

@keyframes homeTopDividerShine{
  0%{
    left: -30%;
  }
  100%{
    left: 130%;
  }
}

/* 两边的线 */
.home-top-divider__line{
  flex: 1 1 auto;
  height: 1px;
  display: block;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(15,23,42,0.06) 18%,
    rgba(15,23,42,0.16) 50%,
    rgba(15,23,42,0.06) 82%,
    transparent 100%
  );
}

/* 中间小点 */
.home-top-divider__dot{
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: block;
  background: #f59e0b;
  box-shadow:
    0 0 0 4px rgba(245,158,11,0.08),
    0 0 14px rgba(245,158,11,0.30);
  animation: homeTopDividerPulse 2.2s ease-in-out infinite;
}

@keyframes homeTopDividerPulse{
  0%, 100%{
    transform: scale(1);
    opacity: 0.9;
  }
  50%{
    transform: scale(1.18);
    opacity: 1;
  }
}

/* 平板 */
@media (max-width: 991px){
  .home-top-divider{
    margin: 10px 0 18px;
    padding: 0 12px;
  }

  .home-top-divider__inner{
    max-width: 100%;
    height: 26px;
    gap: 10px;
    padding: 0 14px;
  }

  .home-top-divider__dot{
    width: 6px;
    height: 6px;
  }
}

/* 手机 */
@media (max-width: 640px){
  .home-top-divider{
    margin: 8px 0 16px;
    padding: 0 10px;
  }

  .home-top-divider__inner{
    height: 22px;
    gap: 8px;
    padding: 0 12px;
  }

  .home-top-divider__dot{
    width: 5px;
    height: 5px;
  }
}


<style>
/* =========================
   Home Hero - Inline Version
   左文右图，直接可用
   ========================= */

.home-hero{
  width:100%;
  padding:28px 0 36px;
  box-sizing:border-box;
}

.home-hero *{
  box-sizing:border-box;
}

.home-hero__inner{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  gap:44px;
  align-items:center;
}

.home-hero__content{
  min-width:0;
}

.home-hero__eyebrow{
  display:inline-block;
  margin:0 0 16px;
  font-size:14px;
  line-height:1.2;
  font-weight:700;
  color:#64748b;
}

.home-hero__title{
  margin:0 0 18px;
  font-size:clamp(36px,5vw,64px);
  line-height:1.04;
  letter-spacing:-0.03em;
  font-weight:800;
  color:#0f172a;
  max-width:760px;
}

.home-hero__desc{
  margin:0;
  max-width:620px;
  font-size:18px;
  line-height:1.75;
  color:#475569;
}

.home-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.home-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:14px;
  text-decoration:none !important;
  font-size:15px;
  font-weight:700;
  transition:all .2s ease;
}

.home-hero__btn--primary{
  background:#0f172a;
  color:#fff !important;
  box-shadow:0 12px 28px rgba(15,23,42,.12);
}

.home-hero__btn--primary:hover{
  background:#162033;
  color:#fff !important;
  transform:translateY(-1px);
}

.home-hero__btn--ghost{
  background:#fff;
  color:#0f172a !important;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.home-hero__btn--ghost:hover{
  color:#0f172a !important;
  transform:translateY(-1px);
  border-color:rgba(15,23,42,.14);
}

.home-hero__tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.home-hero__tags span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  color:#334155;
  font-size:13px;
  font-weight:700;
  box-shadow:0 6px 14px rgba(15,23,42,.04);
}

.home-hero__visual{
  min-width:0;
}

.home-hero__card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 24px 60px rgba(15,23,42,.10);
  padding:14px;
}

.home-hero__card img{
  display:block;
  width:100%;
  height:460px;
  object-fit:cover;
  border-radius:20px;
}

/* 平板 */
@media (max-width:991px){
  .home-hero{
    padding:20px 0 28px;
  }

  .home-hero__inner{
    grid-template-columns:1fr;
    gap:24px;
    padding:0 14px;
  }

  .home-hero__title{
    font-size:clamp(30px,7vw,48px);
    max-width:none;
  }

  .home-hero__desc{
    max-width:none;
    font-size:16px;
  }

  .home-hero__card{
    border-radius:22px;
    padding:10px;
  }

  .home-hero__card img{
    height:320px;
    border-radius:16px;
  }
}

/* 手机 */
@media (max-width:640px){
  .home-hero{
    padding:14px 0 22px;
  }

  .home-hero__inner{
    padding:0 10px;
  }

  .home-hero__eyebrow{
    margin-bottom:12px;
    font-size:12px;
  }

  .home-hero__title{
    margin-bottom:14px;
    font-size:clamp(28px,9vw,40px);
  }

  .home-hero__desc{
    font-size:15px;
    line-height:1.7;
  }

  .home-hero__actions{
    gap:10px;
    margin-top:22px;
  }

  .home-hero__btn{
    min-height:44px;
    padding:0 16px;
    border-radius:12px;
    font-size:14px;
  }

  .home-hero__tags{
    gap:8px;
    margin-top:18px;
  }

  .home-hero__tags span{
    min-height:30px;
    padding:0 12px;
    font-size:12px;
  }

  .home-hero__card img{
    height:240px;
  }
}
</style>

<section class="home-hero">
  <div class="home-hero__inner">

    <div class="home-hero__content">
      <div class="home-hero__eyebrow">Nigeria Gift Card Rate Portal</div>

      <h1 class="home-hero__title">
        Find Gift Card Rates in Nigeria Faster and More Easily
      </h1>

      <p class="home-hero__desc">
        Browse updated gift card rate pages by brand, market and category through a cleaner homepage experience designed for faster access.
      </p>

      <div class="home-hero__actions">
        <a class="home-hero__btn home-hero__btn--primary" href="/gift-card-rates/">
          View Rate Table
        </a>
        <a class="home-hero__btn home-hero__btn--ghost" href="/all-pages/">
          Browse All Pages
        </a>
      </div>

      <div class="home-hero__tags">
        <span>Apple</span>
        <span>Steam</span>
        <span>Razer Gold</span>
        <span>Amazon</span>
        <span>Google Play</span>
      </div>
    </div>

    <div class="home-hero__visual">
      <div class="home-hero__card">
        <img src="https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1200&q=80" alt="Gift card rate dashboard">
      </div>
    </div>

  </div>
</section>