/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --text-muted: #888;
  --primary: #00aaff;
  --primary-dark: #0088cc;
  --caramel: #d4944a;
  --caramel-dark: #a06830;
  --gold: #f5d590;
  --radius: 12px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 6px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* === Navbar === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.logo span { color: var(--primary); }
.logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* === Hero === */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px; gap: 60px; max-width: 1200px; margin: 0 auto;
  flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 320px; }
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--caramel) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 28px; max-width: 500px; }
.hero-sub { font-size: 0.85rem !important; color: var(--text-muted) !important; margin-top: 12px !important; }
.hero-visual { flex: 0 0 320px; display: flex; justify-content: center; }
.flan-hero-img {
  width: 300px; height: 280px;
  filter: drop-shadow(0 20px 40px rgba(212, 148, 74, 0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* === Stats === */
.stats {
  display: flex; justify-content: center; gap: 48px; padding: 60px 24px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; color: var(--caramel); }
.stat span { color: var(--text-muted); font-size: 0.9rem; }

/* === Section common === */
section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
section > h2 { font-size: 2.2rem; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; }

/* === Creator Cards === */
.creator-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 40px;
}
.creator-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.creator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,170,255,0.1);
}
.creator-banner {
  height: 120px; position: relative; overflow: hidden;
}
.creator-banner-bg {
  width: 100%; height: 100%; object-fit: cover;
}
.creator-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--surface); position: absolute;
  bottom: -36px; left: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; background: var(--surface2);
}
.creator-info { padding: 44px 20px 20px; }
.creator-info h3 { font-size: 1.1rem; margin-bottom: 2px; }
.creator-info .handle { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.creator-info .bio { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.creator-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }
.creator-meta strong { color: var(--text); }
.subscribe-btn {
  width: 100%; padding: 10px; background: var(--primary); color: #fff;
  border: none; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600; cursor: pointer; font-size: 0.9rem;
  transition: background 0.2s;
}
.subscribe-btn:hover { background: var(--primary-dark); }

/* === Categories === */
.categories { background: var(--surface); border-radius: var(--radius); padding: 80px 40px; margin: 40px auto; }
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px; margin-top: 40px;
}
.category-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: all 0.2s; cursor: pointer;
}
.category-card:hover {
  border-color: var(--accent, var(--primary));
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent, var(--primary)) 20%, transparent);
  transform: translateY(-2px);
}
.cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.category-card h3 { font-size: 1rem; margin-bottom: 4px; }
.category-card p { font-size: 0.8rem; color: var(--text-muted); }

/* === Pricing === */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; align-items: start;
}
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  position: relative;
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(0,170,255,0.15);
  transform: scale(1.03);
}
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 20px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.price { font-size: 3rem; font-weight: 800; margin-bottom: 24px; }
.price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-card ul { list-style: none; margin-bottom: 28px; }
.price-card li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
}
.price-card li::before { content: "\2713 "; color: var(--primary); font-weight: 700; }

/* === Testimonials === */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-card p { font-style: italic; color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
}
.testimonial-author div span { display: block; font-size: 0.8rem; color: var(--text-muted); }

/* === CTA === */
.cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,170,255,0.1), rgba(212,148,74,0.1));
  border-radius: var(--radius); padding: 80px 40px; margin: 40px auto;
}
.cta h2 { font-size: 2.5rem; margin-bottom: 12px; }
.cta p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Footer === */
footer {
  border-top: 1px solid var(--border); padding: 60px 24px 24px;
  max-width: 1200px; margin: 0 auto;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { margin-bottom: 8px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-col p { color: var(--text-muted); font-size: 0.85rem; max-width: 300px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* === Modal === */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; width: 100%; max-width: 420px;
  position: relative;
}
.modal h2 { margin-bottom: 4px; }
.modal > p { color: var(--text-muted); margin-bottom: 24px; }
.modal form { display: flex; flex-direction: column; gap: 12px; }
.modal input[type="text"],
.modal input[type="email"],
.modal input[type="password"] {
  padding: 12px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.95rem; outline: none;
}
.modal input:focus { border-color: var(--primary); }
.checkbox-label { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 8px; align-items: start; }
.modal-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  color: var(--text-muted); font-size: 1.8rem; cursor: pointer; line-height: 1;
}
.modal-footer { text-align: center; margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }

/* === Toast === */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--primary); color: #fff; padding: 14px 32px;
  border-radius: 50px; font-weight: 600; z-index: 300;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* === Explore Page === */
.explore-page { padding-top: 80px; max-width: 1200px; margin: 0 auto; }
.explore-header { text-align: center; padding: 40px 24px; }
.explore-header h1 { font-size: 2.5rem; margin-bottom: 8px; }
.search-bar { max-width: 500px; margin: 24px auto; }
.search-bar input {
  width: 100%; padding: 14px 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text); font-size: 1rem; outline: none;
}
.search-bar input:focus { border-color: var(--primary); }
.filter-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.filter-tab {
  padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); cursor: pointer; font-size: 0.9rem;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.explore-section { padding: 24px; }
.explore-section h2 { font-size: 1.4rem; margin-bottom: 20px; }

/* Suggested Creators Scroll */
.suggested-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.suggested-card {
  flex: 0 0 180px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-align: center; padding-bottom: 16px;
  transition: transform 0.2s; cursor: pointer; text-decoration: none; color: var(--text);
}
.suggested-card:hover { transform: translateY(-3px); text-decoration: none; }
.suggested-banner { height: 60px; }
.suggested-avatar { font-size: 2.5rem; margin-top: -20px; display: block; }
.suggested-card h3 { font-size: 0.95rem; margin: 8px 0 2px; }
.suggested-card .handle { font-size: 0.8rem; color: var(--text-muted); display: block; }
.suggested-followers { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 4px; }
.suggested-price {
  display: inline-block; margin-top: 8px; padding: 3px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; background: var(--primary); color: #fff;
}

/* === Post Cards === */
.feed-posts { display: flex; flex-direction: column; gap: 20px; }
.post-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.post-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
}
.post-creator {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); text-decoration: none;
}
.post-creator:hover { text-decoration: none; }
.post-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.post-creator div strong { display: block; font-size: 0.95rem; }
.post-creator div span { font-size: 0.8rem; color: var(--text-muted); }
.post-type {
  font-size: 0.8rem; color: var(--text-muted); background: var(--surface2);
  padding: 4px 10px; border-radius: 50px; text-transform: capitalize;
}
.post-body { padding: 0 20px 16px; }
.post-body > p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.5; }
.post-flan { position: relative; border-radius: 8px; overflow: hidden; }
.flan-image {
  width: 100%; height: 300px; object-fit: cover; display: block;
  transition: filter 0.3s; border-radius: 8px;
}
.flan-image.blurred { filter: blur(20px) brightness(0.6); }
.locked-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 2; gap: 8px;
}
.lock-icon { font-size: 3rem; }
.locked-overlay p { color: var(--text); font-weight: 600; }
.post-actions {
  display: flex; gap: 0; border-top: 1px solid var(--border);
}
.post-actions button {
  flex: 1; padding: 12px; background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.post-actions button:hover { background: var(--surface2); color: var(--text); }
.post-actions button:not(:last-child) { border-right: 1px solid var(--border); }

/* === Creator Profile Page === */
.profile-page { padding-top: 60px; }
.profile-banner { height: 250px; width: 100%; }
.profile-header { max-width: 900px; margin: -60px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.profile-header-inner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px; display: flex; gap: 20px;
  align-items: flex-start; flex-wrap: wrap;
}
.profile-avatar-large {
  width: 100px; height: 100px; border-radius: 50%; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
  border: 4px solid var(--surface); margin-top: -60px; flex-shrink: 0;
}
.profile-info { flex: 1; min-width: 200px; }
.profile-info h1 { font-size: 1.6rem; margin-bottom: 2px; }
.profile-info .handle { color: var(--text-muted); font-size: 0.9rem; }
.profile-bio { margin: 10px 0; font-size: 0.95rem; color: var(--text-muted); }
.profile-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.profile-stats {
  display: flex; gap: 24px;
}
.profile-stats div { text-align: center; }
.profile-stats strong { display: block; font-size: 1.1rem; color: var(--text); }
.profile-stats span { font-size: 0.75rem; color: var(--text-muted); }
.profile-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.profile-content { max-width: 900px; margin: 24px auto; padding: 0 24px; }
.profile-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.profile-tab {
  padding: 12px 24px; background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 0.95rem; font-weight: 600;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.profile-tab.active, .profile-tab:hover { color: var(--primary); border-bottom-color: var(--primary); }
.profile-feed { display: flex; flex-direction: column; gap: 20px; }

/* About Card */
.about-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 16px;
}
.about-card h3 { margin-bottom: 12px; }
.about-card p { color: var(--text-muted); margin-bottom: 16px; }
.about-details { display: flex; flex-direction: column; gap: 0; }
.about-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.about-row span { color: var(--text-muted); }
.benefits-list { list-style: none; }
.benefits-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-muted); }
.benefits-list li::before { content: "\2713 "; color: var(--primary); font-weight: 700; }

/* === Feed Page Layout === */
.feed-page { padding-top: 80px; }
.feed-layout {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: grid; grid-template-columns: 240px 1fr 260px; gap: 24px;
}
.feed-sidebar, .feed-sidebar-right { position: sticky; top: 80px; height: fit-content; }
.sidebar-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 16px;
}
.sidebar-section h3 { font-size: 0.95rem; margin-bottom: 12px; }
.sidebar-creator {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  color: var(--text); text-decoration: none; font-size: 0.85rem;
}
.sidebar-creator:hover { text-decoration: none; }
.sidebar-creator div span { display: block; font-size: 0.75rem; color: var(--text-muted); }
.sidebar-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.top-creator .rank { font-weight: 800; color: var(--caramel); font-size: 0.85rem; min-width: 24px; }
.trending-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 4px 12px; border-radius: 50px; background: var(--surface2);
  color: var(--text-muted); font-size: 0.75rem; text-decoration: none;
  transition: all 0.2s;
}
.tag:hover { background: var(--primary); color: #fff; text-decoration: none; }
.promo-card {
  background: linear-gradient(135deg, rgba(0,170,255,0.1), rgba(212,148,74,0.1)) !important;
  border-color: var(--primary) !important;
}
.promo-card p { font-size: 0.85rem; color: var(--text-muted); margin: 8px 0 12px; }

/* Feed Header */
.feed-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.feed-header-bar h1 { font-size: 1.5rem; }
.feed-sort { display: flex; gap: 4px; }
.feed-sort-btn {
  padding: 6px 16px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); cursor: pointer; font-size: 0.85rem;
}
.feed-sort-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Compose Card */
.compose-card {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 20px;
}
.compose-avatar { font-size: 1.8rem; }
.compose-input {
  flex: 1; padding: 10px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text-muted); cursor: pointer; font-size: 0.9rem;
}

/* Active nav link */
.nav-links a.active { color: var(--primary); }

/* === Checkout Page === */
.checkout-page { padding-top: 100px; min-height: 100vh; }
.checkout-container { max-width: 540px; margin: 0 auto; padding: 0 24px; }
.checkout-container.hidden { display: none; }
.checkout-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.checkout-steps { display: flex; gap: 0; margin-bottom: 28px; }
.step {
  flex: 1; text-align: center; padding: 10px; font-size: 0.85rem;
  color: var(--text-muted); border-bottom: 2px solid var(--border);
}
.step.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
.step.done { color: var(--caramel); border-bottom-color: var(--caramel); }
.checkout-card h2 { margin-bottom: 20px; font-size: 1.4rem; }
.order-summary { margin-bottom: 24px; }
.order-line {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
.order-line.subtle { color: var(--text-muted); font-size: 0.9rem; }
.order-line.total { border-bottom: none; border-top: 2px solid var(--border); font-size: 1.1rem; margin-top: 4px; padding-top: 16px; }
.order-line.total strong { color: var(--primary); }
.checkout-back {
  display: block; text-align: center; margin-top: 16px;
  font-size: 0.85rem; color: var(--text-muted);
}

/* Payment form */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 12px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.95rem; outline: none;
}
.form-group input:focus { border-color: var(--primary); }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.order-total { margin: 20px 0; }

/* Reveal / Charity */
.reveal-card { max-width: 700px; margin: 0 auto; text-align: center; }
.reveal-header { margin-bottom: 28px; }
.reveal-emoji { font-size: 4rem; margin-bottom: 12px; }
.reveal-header h2 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--caramel));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.reveal-header p { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 12px auto 0; }
.reveal-card h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--text-muted); }
.charity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; text-align: left; }
.charity-option {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-decoration: none; color: var(--text); transition: all 0.2s;
}
.charity-option:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,170,255,0.1); text-decoration: none;
}
.charity-icon { font-size: 2rem; margin-bottom: 8px; }
.charity-option h4 { font-size: 0.95rem; margin-bottom: 6px; }
.charity-option p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.charity-cta { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.reveal-footer { margin-top: 8px; }
.reveal-footer p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }

/* === Age Gate === */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; transition: opacity 0.4s;
}
.age-gate-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px 40px;
  max-width: 520px; width: 100%; text-align: center;
}
.age-gate-logo { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.age-gate-logo span { color: var(--primary); }
.age-gate-flan { font-size: 5rem; margin: 16px 0; }
.age-gate-card h2 { font-size: 1.6rem; margin-bottom: 12px; }
.age-gate-card > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; line-height: 1.6; }
.age-gate-small { font-size: 0.85rem !important; color: var(--text-muted); }
.age-gate-buttons { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 20px; }
.age-gate-disclaimer { font-size: 0.75rem !important; color: var(--text-muted) !important; }
.age-gate-disclaimer a { color: var(--primary); }

/* === Verified Badge === */
.verified-badge {
  display: inline-block; vertical-align: middle; margin-left: 4px;
  flex-shrink: 0;
}

/* === Mobile Bottom Nav === */
.mobile-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface); border-top: 1px solid var(--border);
  z-index: 100; padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.mobile-nav {
  display: none;
  grid-template-columns: repeat(5, 1fr);
}
.mobile-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px; color: var(--text-muted); text-decoration: none;
  font-size: 0.65rem; position: relative; transition: color 0.2s;
}
.mobile-nav-item:hover { text-decoration: none; color: var(--text); }
.mobile-nav-item.active { color: var(--primary); }
.mobile-nav-item svg { width: 22px; height: 22px; }
.nav-badge {
  position: absolute; top: 2px; right: calc(50% - 18px);
  background: #ff3b30; color: #fff; font-size: 0.6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; gap: 30px; }
  .hero-content p { margin: 0 auto 28px; }
  .hero-visual { flex: 0 0 auto; }
  .flan-hero-img { width: 220px; height: 200px; }
  .stats { gap: 24px; }
  .stat strong { font-size: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .price-card.featured { transform: none; }
  .feed-layout { grid-template-columns: 1fr; }
  .feed-sidebar, .feed-sidebar-right { display: none; }
  .profile-header-inner { flex-direction: column; align-items: center; text-align: center; }
  .profile-avatar-large { margin-top: -50px; }
  .profile-actions { width: 100%; }
  .profile-actions .btn { width: 100%; }
  .profile-stats { justify-content: center; }
  .profile-meta { justify-content: center; }
  .flan-image { height: 200px; }
  .charity-grid { grid-template-columns: 1fr; }
  .reveal-card { padding: 24px; }
  /* Mobile nav */
  .mobile-nav { display: grid; }
  body { padding-bottom: 70px; }
  .toast { bottom: 80px; }
  .navbar .btn-sm { padding: 5px 12px; font-size: 0.8rem; }
}
