/* ---------------- RESET ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------------- HERO ---------------- */
.hero {
  background: linear-gradient(135deg, #e35d9e 0%, #d07dc5 50%, #8ac9ed 100%);
  color: white;
  padding: 80px 0 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-text {
  flex: 1;
  min-width: 260px;
  text-align: left;
}

.hero-text h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #fff;
}

.hero-text h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.signup-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 300px;
}

.signup-form input {
  width: 320px;
  height: 48px;
  flex: 1;
  padding: 0 12px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 16px;
}

.signup-form button {
  width: 160px;
  padding: 10px 18px;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.signup-form button:hover {
  background: #f5f5f5;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: absolute;
  bottom: -190px;
  right: 30px;
  width: 34%;   /* reduced from 42% */
  max-width: 280px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  position: relative;
  /* box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2); */
  z-index: 10;
}

/* ---------------- FEATURES ---------------- */
.features {
  padding: 120px 0 50px;
  background: #f9f9f9;
  /* text-align: center; */
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 40px;
  
}

.section-header p {
  font-size: 0.95rem;
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card .icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 1.5;
}

.logo{
  width: 45px;
}

/* ---------------- NOLLYWOOD ---------------- */
.nollywood {
  position: relative;
  padding: 70px 0 140px; /* extra bottom for floating image */
  background: white;
}

.nollywood-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.nollywood-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.nollywood-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
  /* line-height: 1.4; */
}

.nollywood-text p {
  font-size: 18px;
  color: #666;
  width: 400;
  /* margin-bottom: 16px; */
  line-height: 1.5;
}

.nollywood-image {
  flex: 1;
  text-align: center;
  position: absolute;
  bottom: -180px;
  right: 30px;
  width: 34%;   /* reduced from 42% */
  max-width: 280px;}

.nollywood-image img {
 width: 100%;
  height: auto;
  border-radius: 40px;
  position: relative;
  /* box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2); */
  z-index: 10;
}


/* ---------------- STATS CTA ---------------- */
.stats {
  /* background: linear-gradient(135deg, #ef5a92 0%, #a26ee1 50%, #57b6ec 100%); */
  background-color: #e8f5ff;
  /* color: white; */
  padding: 60px 100px;
  text-align: left;
  position: relative;
}

.stats-content {
  max-width: 600px;
  margin: 0 auto;
}

.stats-content h2 {
  font-size: 24px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
  margin-left: -100px;
}

.stats-content p {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 400;
  color: #333333;
  margin-left: -100px;
  /* opacity: 0.9; */
}

.cta-button {
  padding: 10px 22px;
  background: white;
  color: #333;
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  margin-left: -100px;
}

.cta-button a{
  text-decoration: none;
  color: #000;
}
.cta-button:hover {
  background: #f0f0f0;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .hero { padding: 50px 0 130px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text h2 { font-size: 1.05rem; }
  .signup-form { max-width: 260px; height: 100px;}
  .hero-image { top: 90px; max-width: 240px; right: 20px; }

  .features { padding: 100px 0 40px; }

  .nollywood { padding: 60px 0 120px; }
  .nollywood-image img { max-width: 280px; bottom: -80px; }

  .stats-content h2 { font-size: 1.2rem; }

  .cta-button {
  /* padding: 10px 22px; */
  background: white;
  color: #333;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  align-items: left;
  /* justify-content: center; */
  /* transition: background 0.3s; */
  width: 110px;
  margin-left: -100px;
}
.cta-button a{
  text-decoration: none;
  color: #000;
}
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 110px; }
  .hero-text h1 { font-size: 1.7rem; }
  .hero-text h2 { font-size: 0.95rem; }
  .signup-form { width: 190px; height: 80px;}
  .hero-image { top: 180px; max-width: 200px; right: 20%; transform: translateX(50%); }

  .features { padding: 80px 0 30px; }

  .nollywood { padding: 50px 0 100px; text-align: center; }
  .nollywood-content { flex-direction: column; align-items: center; }
  .nollywood-text { text-align: left; }
  .nollywood-image img { position: relative; top: 20px; max-width: 150px; left: 30px;}
  .stats-content h2 {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
  margin-left: -100px;
}
.stats-content p {
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 400;
  color: #333333;
  margin-left: -100px;
  /* opacity: 0.9; */
}
 .cta-button {
  /* padding: 10px 22px; */
  background: white;
  color: #333;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  align-items: left;
  /* justify-content: center; */
  /* transition: background 0.3s; */
  width: 120px;
  margin-left: -100px;
}
.cta-button a{
  text-decoration: none;
  color: #000;
}
}

@media (max-width: 480px) {
  .hero { padding: 35px 0 90px; }
  .hero-text h1 { font-size: 1.4rem; }
  .hero-text h2 { font-size: 0.85rem; }
  .signup-form { max-width: 180px; flex-direction: column; gap: 10px; }
  .signup-form button { width: 70%; font-size: 0.7rem; text-align: left;}
  .signup-form input{width: 100%;}
  .hero-image { bottom: -70px; max-width: 160px; left: 40%; }

  .nollywood { padding: 40px 0 80px; }
  .nollywood-image img { bottom: -40px; max-width: 160px; }
  .cta-button {
  padding: 10px 22px;
  background: white;
  color: #333;
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.cta-button a{
  text-decoration: none;
  color: #000;
}
}

@media (max-width: 360px) {
  .hero { padding: 30px 0 70px; }
  .hero-text h1 { font-size: 1.2rem; }
  .signup-form { max-width: 180px; }
  .hero-image { bottom: -40px; max-width: 140px; }

  .nollywood-image img { bottom: -30px; max-width: 140px; }
  .cta-button {
  padding: 10px 22px;
  background: white;
  color: #333;
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.cta-button a{
  text-decoration: none;
  color: #000;
}
}
/* ---------------- COIN PACKS ---------------- */
.coin-packs {
  background: #fff8f0;
  padding: 80px 0;
  text-align: center;
}

.coin-packs .section-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.pack-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

.pack-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 30px 20px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.pack-card h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 8px;
}

.pack-card h4 {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
}

.pack-card .coins {
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.pack-card span {
  color: #f15a24;
  font-weight: 500;
}

.pack-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.pay-btn {
  background: #f15a24;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: 15px;
}

.pay-btn:hover {
  background: #d64c1e;
}
