@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #00b4ff;
  --primary-glow: rgba(0, 180, 255, 0.4);
  --accent: #ff3d7f;
  --accent-glow: rgba(255, 61, 127, 0.4);
  --gold: #ffc107;
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* === UTILITIES === */
.hidden {
  display: none !important;
}

/* === ANIMATED BG === */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 180, 255, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 61, 127, 0.07), transparent);
  pointer-events: none;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

/* === SEARCH BAR === */
.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  flex: 0 1 280px;
  transition: all 0.3s;
}

.nav-search:focus-within {
  border-color: var(--primary);
  background: rgba(0, 180, 255, 0.06);
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.1);
}

.nav-search i {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
}

.nav-search input::placeholder {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* === UPGRADE BUTTON (basic plan users) === */
.nav-upgrade-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, #ffc107, #ff9500);
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.45);
  transition: all 0.3s;
  white-space: nowrap;
  animation: upgrade-pulse 2.5s ease infinite;
  text-decoration: none;
  cursor: pointer;
}

.nav-upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 28px rgba(255, 193, 7, 0.65);
}

.nav-upgrade-btn i {
  font-size: 0.75rem;
}

@keyframes upgrade-pulse {

  0%,
  100% {
    box-shadow: 0 0 16px rgba(255, 193, 7, 0.45);
  }

  50% {
    box-shadow: 0 0 28px rgba(255, 193, 7, 0.75);
  }
}

@media (max-width: 600px) {
  .nav-upgrade-btn span {
    display: none;
  }

  .nav-upgrade-btn {
    padding: 8px 12px;
  }
}


/* === BUTTONS === */
.btn-ghost {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: var(--bg-glass);
}

.btn-primary {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0090cc);
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--primary-glow);
}

.btn-accent {
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #e0245e);
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: all 0.3s;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-outline {
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 180, 255, 0.05);
}

/* === HERO BANNER === */
.hero-banner {
  position: relative;
  z-index: 1;
  padding: 76px 40px 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.06) 0%, transparent 100%);
}

.hero-banner-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-banner h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-banner h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typewriter line */
.typewriter-line {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.typewriter {
  color: var(--primary);
  font-weight: 600;
}

.cursor {
  color: var(--accent);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Hero scroll CTA */
.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.3s;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-scroll-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(2px);
}

.hero-scroll-btn i {
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* === SECTIONS SHARED === */
section {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

#creators {
  padding-top: 24px;
}

#creators .section-header {
  margin-bottom: 24px;
}

.section-header .overline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 16px auto 0;
}

/* === SORT PILLS === */
.sort-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.sort-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: pointer;
}

.sort-pill:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.sort-pill.active {
  background: linear-gradient(135deg, var(--primary), #0090cc);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 12px var(--primary-glow);
}

/* === FEATURED CREATORS === */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.creator-card.hidden {
  display: none;
}

.creator-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.creator-cover {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.creator-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.creator-card:hover .creator-cover img {
  transform: scale(1.08);
}

/* Card badges */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.card-badge.hot {
  background: rgba(255, 61, 127, 0.2);
  color: var(--accent);
  border: 1px solid rgba(255, 61, 127, 0.3);
}

.card-badge.new {
  background: rgba(0, 180, 255, 0.2);
  color: var(--primary);
  border: 1px solid rgba(0, 180, 255, 0.3);
}

.creator-cover .online-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0, 200, 83, 0.2);
  color: #00c853;
  border: 1px solid rgba(0, 200, 83, 0.3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.creator-cover .online-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c853;
  animation: pulse-dot 2s ease infinite;
}

.creator-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.creator-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.creator-info {
  padding: 12px 20px 16px;
  text-align: center;
}

.creator-name {
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.verified-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
}

.creator-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Star rating */
.creator-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

.creator-rating i {
  font-size: 0.7rem;
}

.creator-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 8px 0 12px;
  line-height: 1.5;
}

.creator-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.creator-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.creator-meta span i {
  font-size: 0.7rem;
}

.creator-meta span strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* === CREATOR ACTIONS === */
.creator-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}

.action-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.chat-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.chat-btn:hover {
  border-color: var(--accent);
  background: rgba(255, 61, 127, 0.1);
  color: var(--accent);
}

.unlock-btn {
  background: linear-gradient(135deg, var(--primary), #0090cc);
  color: #fff;
}

.unlock-btn:hover {
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-1px);
}

/* === LOAD MORE === */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  padding: 12px 32px;
  font-size: 0.9rem;
}

/* === CONTENT PREVIEW GRID === */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.7);
  transition: all 0.4s;
}

.content-item:hover img {
  filter: blur(8px) brightness(0.5);
  transform: scale(1.05);
}

.content-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.content-item:hover .content-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.lock-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: all 0.3s;
}

.content-item:hover .lock-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: scale(1.1);
}

/* Creator name tag on content */
.content-creator-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
}

.content-price {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === TRUST STRIP === */
.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 28px 40px;
  background: rgba(0, 180, 255, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* === CATEGORIES === */
.categories-scroll {
  display: flex;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.category-chip {
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 180, 255, 0.08);
  transform: translateY(-2px);
}

.chip-count {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.category-chip:hover .chip-count,
.category-chip.active .chip-count {
  background: rgba(0, 180, 255, 0.15);
  color: var(--primary);
}

/* === HOW IT WORKS === */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 255, 0.2);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15), rgba(255, 61, 127, 0.15));
  border: 1px solid rgba(0, 180, 255, 0.2);
  color: var(--primary);
  transition: all 0.3s;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 30px var(--primary-glow);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  color: var(--text-muted);
  font-size: 1rem;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === CTA BANNER === */
.cta-banner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.12), rgba(255, 61, 127, 0.12));
  border: 1px solid rgba(0, 180, 255, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-live-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  font-size: 0.78rem;
  color: #00c853;
  margin-bottom: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c853;
  animation: pulse-dot 2s ease infinite;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner h2 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cta-trust-row span i {
  color: var(--primary);
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 40px 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Newsletter input */
.footer-newsletter {
  display: flex;
  gap: 8px;
  max-width: 280px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.82rem;
  outline: none;
  transition: all 0.3s;
}

.footer-newsletter input:focus {
  border-color: var(--primary);
}

.footer-newsletter input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter .btn-primary {
  padding: 10px 16px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
}

/* Become a creator link */
.footer-creator-link {
  margin-top: 12px !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-full) !important;
  background: linear-gradient(135deg, rgba(255, 61, 127, 0.1), rgba(0, 180, 255, 0.1)) !important;
  border: 1px solid rgba(255, 61, 127, 0.2) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  color: var(--accent) !important;
  transition: all 0.3s !important;
}

.footer-creator-link:hover {
  background: rgba(255, 61, 127, 0.15) !important;
  transform: translateY(-2px) !important;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === MOBILE MENU === */
.menu-toggle {
  display: none;
  background: none;
  width: 32px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-search {
    flex: 0 1 200px;
  }

  .step-connector {
    width: 32px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 16px;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .nav-search {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .hero-banner {
    padding: 66px 20px 12px;
  }

  .hero-banner h1 {
    font-size: 1.5rem;
    letter-spacing: -1px;
  }

  section {
    padding: 60px 20px;
  }

  #creators {
    padding-top: 16px;
  }

  .creators-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }

  .step-connector {
    transform: rotate(90deg);
    width: auto;
  }

  .step-card {
    max-width: 100%;
  }

  .trust-strip {
    gap: 16px;
    padding: 20px;
  }

  .trust-item {
    font-size: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .sort-pills {
    gap: 6px;
  }

  .sort-pill {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .creators-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner h1 {
    font-size: 1.3rem;
  }

  .categories-scroll {
    gap: 8px;
  }

  .category-chip {
    padding: 10px 16px;
    font-size: 0.78rem;
  }
}

/* ========================================
   PHASE 3: AGE GATE & AUTH MODALS
   ======================================== */

/* === AGE VERIFICATION GATE === */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.age-gate-overlay.hidden {
  display: none;
}

.age-gate-modal {
  max-width: 420px;
  width: 100%;
  padding: 48px 36px;
  text-align: center;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid var(--border);
  border-radius: 24px;
  animation: scaleIn 0.4s ease;
}

.age-gate-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15), rgba(255, 61, 127, 0.15));
  border: 1px solid rgba(0, 180, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--primary);
}

.age-gate-modal h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.age-gate-modal p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-deny {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 10px 24px;
}

.age-gate-legal {
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.age-gate-legal a {
  color: var(--primary);
  text-decoration: underline;
}

/* === AUTH MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.auth-modal {
  max-width: 440px;
  width: 100%;
  padding: 36px 32px;
  background: rgba(18, 18, 28, 0.98);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
}

.modal-overlay.active .auth-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

/* Auth tabs */
.auth-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  padding: 4px;
  background: var(--bg-glass);
  border-radius: var(--radius-full);
}

.auth-tab {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: pointer;
}

.auth-tab.active {
  background: linear-gradient(135deg, var(--primary), #0090cc);
  color: #fff;
  box-shadow: 0 2px 12px var(--primary-glow);
}

.auth-tab:hover:not(.active) {
  color: var(--text-primary);
}

/* Social auth buttons */
.social-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.social-btn.google:hover {
  border-color: #4285f4;
  color: #4285f4;
}

.social-btn.apple:hover {
  border-color: #fff;
}

.social-btn.twitter:hover {
  border-color: var(--text-primary);
}

.social-btn i {
  font-size: 1rem;
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Form groups */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.3s;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input.error {
  border-color: var(--accent);
}

.forgot-link {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: opacity 0.3s;
}

.forgot-link:hover {
  opacity: 0.8;
}

.auth-submit {
  margin-top: 8px;
}

.auth-legal {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.auth-legal a {
  color: var(--primary);
  text-decoration: underline;
}

.auth-form.hidden {
  display: none;
}

/* === USER MENU (logged-in state) === */
.user-menu {
  position: relative;
}

.user-menu.hidden {
  display: none;
}

.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 6px 14px 6px 6px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
}

.user-avatar-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.user-avatar-btn img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.user-avatar-btn i {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: rgba(18, 18, 28, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  z-index: 100;
  animation: fadeInUp 0.2s ease;
}

.user-dropdown.hidden {
  display: none;
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.user-dropdown a:hover {
  background: var(--bg-glass);
  color: var(--text-primary);
}

.user-dropdown a i {
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Creator card as link */
a.creator-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Nav message badge */
.nav-msg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: middle;
}

/* === COOKIE CONSENT BANNER === */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookieConsent.cookie-visible {
  transform: translateY(0);
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-consent-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #fff;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  border: none;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--primary), #0090cc);
  color: #fff;
  box-shadow: 0 2px 12px var(--primary-glow);
}

.cookie-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.cookie-btn-secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.cookie-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 600px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}