/* ========== GLOBAL RESET & FULL-SCREEN LAYOUT ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 30% 10%, #3a2a1f 0%, #1f1a10 100%);
  font-family:
    "Segoe UI",
    "Poppins",
    system-ui,
    -apple-system,
    sans-serif;
  color: #f5e6d3;
  line-height: 1.5;
  overflow-x: hidden;
}

/* FULL-WIDTH CONTAINER — minimal side padding */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 12px; /* very small side padding – edge-to-edge feel */
}

/* ========== GOLD THEME ========== */
:root {
  --gold: #e4b363;
  --gold-dark: #b87c2e;
  --card-bg: rgba(30, 24, 18, 0.85);
  --border-gold: 1px solid rgba(228, 179, 99, 0.5);
  --shadow-gold: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ========== TYPOGRAPHY — TIGHTER SPACING ========== */
h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--gold);
  letter-spacing: -0.3px;
}

.section-title {
  text-align: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin: 0.4rem 0;
}

/* ========== NAVBAR — COMPACT ========== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 20px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
}

.nav-btn {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 2px 6px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.nav-btn:hover {
  background: var(--gold);
  color: #1e1a12;
  transform: translateY(-2px);
}

.nav-btn.small {
  padding: 5px 16px;
  font-size: 0.8rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #1e1a12;
  border: none;
  box-shadow: 0 4px 12px rgba(228, 179, 99, 0.4);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-3px);
}

/* ========== IMAGES — FULL WIDTH WITH MINIMAL MARGIN ========== */
.image-container {
  margin: 18px 0;
  border-radius: 24px;
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-gold);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.image-container img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ========== COLLAB SECTION — COMPACT ========== */
.collab-section {
  margin: 32px 0;
}

.collab-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.collab-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 24px 22px;
  text-align: center;
  border: var(--border-gold);
  flex: 1;
  min-width: 250px;
  transition: transform 0.3s;
}

.collab-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.collab-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.collab-item {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(228, 179, 99, 0.2);
}

.collab-item span {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
}

.collab-tagline {
  margin-top: 16px;
  font-style: italic;
  color: #e4cda7;
  font-size: 0.9rem;
}

/* ========== NARRATIVE SECTION (NEW) ========== */
.narrative-section {
  margin: 40px 0;
}

.narrative-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease;
}

.narrative-card:hover {
  transform: translateY(-4px);
}

.narrative-card h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.narrative-sub {
  font-size: 1.1rem;
  color: #e4cda7;
  margin-bottom: 28px;
  font-style: italic;
}

.narrative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.narrative-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 28px;
  padding: 16px 12px;
  text-align: center;
  border-left: 3px solid var(--gold);
  transition: all 0.2s;
}

.narrative-item:hover {
  background: rgba(228, 179, 99, 0.1);
  transform: translateY(-2px);
}

.narrative-item span {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.narrative-item p {
  font-size: 0.85rem;
  color: #e4cda7;
  margin: 0;
}

.narrative-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 20px;
  line-height: 1.4;
}

/* ========== SCRIPT2CASH SPOTLIGHT ========== */
.script-spotlight {
  margin: 40px 0;
}

.spotlight-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease;
}

.spotlight-card:hover {
  transform: translateY(-4px);
}

.spotlight-card h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.spotlight-desc {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 16px;
  color: #e4cda7;
}

.spotlight-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin: 16px 0;
  font-style: italic;
}

/* ========== OFFER GRID — REDUCED GAPS ========== */
.offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 28px 0;
}

.offer-card {
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  border-radius: 28px;
  padding: 26px 20px;
  text-align: center;
  border: var(--border-gold);
  flex: 1;
  min-width: 210px;
  transition: transform 0.3s;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.offer-card h3 {
  margin-bottom: 8px;
}

/* ========== SERVICES GRID (GLAM ECONOMY) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
  margin: 28px 0;
}

.glam-card {
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  border-radius: 28px;
  padding: 20px 18px;
  border: var(--border-gold);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glam-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(228, 179, 99, 0.3);
}

.earn-badge {
  background: rgba(228, 179, 99, 0.15);
  padding: 5px 10px;
  border-radius: 40px;
  font-size: 0.75rem;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ========== EARNING STRUCTURE — COMPACT ========== */
.earn-structure {
  background: rgba(30, 24, 18, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 28px 20px;
  margin: 36px 0;
  border: var(--border-gold);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.structure-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.bonus-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 18px;
  border-radius: 28px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  border-left: 3px solid var(--gold);
}

.bonus-box span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.hourly-rates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(228, 179, 99, 0.3);
}

.hourly-rates span {
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
}

.hourly-rates .total {
  background: var(--gold);
  color: #1e1a12;
  font-weight: 700;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: 44px;
  padding: 40px 28px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1e1a12;
  padding: 3px 18px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin: 16px 0 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 12px 0;
  color: white;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: normal;
  color: #d4c2a5;
}

.pricing-features {
  list-style: none;
  margin: 18px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 0.5px solid rgba(228, 179, 99, 0.2);
  font-size: 0.9rem;
}

.pricing-features i {
  color: var(--gold);
  width: 22px;
}

.daily-earnings {
  background: rgba(228, 179, 99, 0.1);
  border-radius: 28px;
  padding: 10px;
  margin: 16px 0;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.testimonial {
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  padding: 20px;
  border-radius: 26px;
  border: var(--border-gold);
  transition: transform 0.3s;
  text-align: center;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.author {
  margin-top: 10px;
  color: var(--gold);
  font-weight: 600;
}

/* ========== LIVE REGISTRATIONS (SCROLLING) — COMPACT ========== */
.registrations-section {
  margin: 36px 0 32px;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: 36px;
  padding: 18px;
  border: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.registrations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.registrations-header h2 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.registrations-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  border: var(--border-gold);
  padding: 12px;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.registration-marquee {
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: scrollUp 32s linear infinite;
}

.registration-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 16px;
  border-radius: 5px;
  border: 1px solid rgba(228, 179, 99, 0.3);
}

.user-avatar {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: #1e1a12;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-size: 0.9rem;
}

.user-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #f5e6d3;
}

.user-plan {
  font-size: 0.7rem;
  color: var(--gold);
}

.amount-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
}

.registration-time {
  font-size: 0.65rem;
  color: #d4c2a5;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* ========== FOOTER — TIGHT ========== */
footer {
  text-align: center;
  padding: 32px 0 28px;
  border-top: 1px solid var(--gold);
  margin-top: 30px;
  color: #d4c2a5;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold);
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE — EXTRA TIGHT ON MOBILE ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  h2 {
    font-size: 1.6rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .structure-grid {
    flex-direction: column;
  }
  .registrations-container {
    height: 340px;
  }
  .registration-marquee {
    animation-duration: 28s;
  }
  .pricing-card {
    padding: 32px 18px;
  }
  .collab-grid {
    flex-direction: column;
  }
  .offer-grid {
    gap: 18px;
  }
  .spotlight-card {
    padding: 28px 20px;
  }
  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 6px;
  }
  .collab-card {
    padding: 20px 16px;
  }
  .earn-structure {
    padding: 20px 14px;
  }
  .narrative-card {
    padding: 28px 20px;
  }
}
