/*
Theme Name: TotsName — Baby Names Platform
Theme URI: https://totsname.com
Author: TotsName
Author URI: https://totsname.com
Description: World-class baby names platform with SEO-optimized name pages, smart name finder, stories, and pet names. Built for India and global audiences.
Version: 1.0.0
License: Commercial
Text Domain: totsname
Tags: baby-names, custom-post-types, seo-optimized, india, responsive
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* === ULTRA LIVELY WORLD-CLASS PALETTE 2.0 === */

  /* PRIMARY — Electric Coral (more saturated, more energy) */
  --sunrise:    #FF4D2E;   /* Electric coral-red — maximum energy */
  --sunrise-lt: #FFF0EC;
  --sunrise-dk: #CC2A0A;

  /* SECONDARY — Deep Ocean Teal */
  --teal:       #00B5AD;   /* Deeper, richer teal */
  --teal-lt:    #DFFAFA;
  --teal-dk:    #007A75;

  /* ACCENT — Pure Saffron Gold (India-inspired) */
  --gold:       #FF9500;   /* Bright saffron-orange gold */
  --gold-lt:    #FFF3DC;
  --gold-dk:    #CC7700;

  /* FEATURE — Electric Violet */
  --violet:     #6B21F4;   /* Deeper electric violet */
  --violet-lt:  #EEE5FF;
  --violet-dk:  #4A0FCC;

  /* SUCCESS — Tropical Mint */
  --mint:       #00C48C;   /* Vivid tropical green */
  --mint-lt:    #CCFAEC;

  /* GIRL — Hot Magenta Rose */
  --rose:       #F0006B;   /* Pure magenta — maximum energy */
  --rose-lt:    #FFE0F0;

  /* BOY — Electric Sky */
  --sky:        #0090FF;   /* Pure electric blue */
  --sky-lt:     #E0F2FF;

  /* SPECIAL — Festival Pink (India festive) */
  --festival:   #FF2D78;   /* Deep festival pink */
  --festival-lt:#FFE0EC;

  /* === NEUTRALS === */
  --ink:        #0F0820;   /* Near-black deep plum */
  --ink-70:     #3D2B60;
  --ink-45:     #7B6A9E;
  --ink-20:     #CDC4E8;
  --white:      #FFFFFF;
  --cream:      #FFFCF8;   /* Slightly warmer cream */
  --surface:    #F7F3FF;
  --border:     rgba(107,33,244,0.12);
  --border-md:  rgba(107,33,244,0.22);

  /* === TYPOGRAPHY === */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* === SPACING & RADIUS === */
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-pill: 100px;
  --shadow:      0 4px 24px rgba(22,11,46,0.08);
  --shadow-lg:   0 12px 48px rgba(22,11,46,0.14);
  --shadow-xl:   0 24px 80px rgba(22,11,46,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ===== UTILITY CLASSES ===== */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.container-sm  { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.text-center   { text-align: center; }
.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.grid          { display: grid; }
.sr-only       { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== SECTION COMMONS ===== */
section { padding: 72px 0; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: currentColor; opacity: 0.2; max-width: 40px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.5px; color: var(--ink);
}
.section-title em   { font-style: italic; }
.section-title span.highlight {
  background: linear-gradient(135deg, var(--sunrise), var(--rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { font-size: 16px; color: var(--ink-45); margin-top: 12px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-eyebrow { justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; border: none;
  transition: all 0.22s; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--sunrise); color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,74,0.35);
}
.btn-primary:hover { background: var(--sunrise-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,74,0.4); }
.btn-teal {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 20px rgba(14,165,160,0.3);
}
.btn-teal:hover { background: var(--teal-dk); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-md);
}
.btn-outline:hover { background: var(--surface); border-color: var(--violet); color: var(--violet); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-70); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

/* ===== BADGE / PILL ===== */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
}
.badge-hindu    { background: #FFF0EC; color: #C04020; border: 1px solid #FFD0C0; }
.badge-muslim   { background: #E0F7F6; color: #0A7A76; border: 1px solid #A0E8E5; }
.badge-sikh     { background: #FEF3D0; color: #B87800; border: 1px solid #FAD870; }
.badge-christian{ background: #E0F2FE; color: #0369A1; border: 1px solid #BAE6FD; }
.badge-girl     { background: var(--rose-lt); color: var(--rose); border: 1px solid rgba(244,63,142,0.2); }
.badge-boy      { background: var(--sky-lt); color: var(--sky); border: 1px solid rgba(14,165,233,0.2); }
.badge-neutral   { background: var(--violet-lt); color: var(--violet); border: 1px solid rgba(124,58,237,0.2); }
.badge-trending { background: linear-gradient(135deg,var(--sunrise-lt),var(--rose-lt)); color: var(--sunrise-dk); border: 1px solid rgba(255,107,74,0.2); }

/* ===== TICKER BAR ===== */
.ticker-bar {
  background: linear-gradient(135deg, var(--violet), #9333EA);
  padding: 10px 0; overflow: hidden; position: relative;
}
.ticker-inner { display: flex; gap: 0; white-space: nowrap; }
.ticker-track {
  display: flex; gap: 40px;
  animation: ticker-scroll 30s linear infinite;
  padding-right: 40px;
}
.ticker-item { font-size: 13px; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 8px; }
.ticker-item strong { color: #fff; font-weight: 500; }
.ticker-sep { color: rgba(255,255,255,0.3); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,251,247,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(22,11,46,0.06);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.5px;
}
.site-logo span { color: var(--sunrise); }
.site-logo sup {
  font-size: 10px; color: var(--teal); font-family: var(--font-body);
  font-weight: 500; letter-spacing: 0.05em; vertical-align: super; margin-left: 2px;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-size: 14px; font-weight: 400; color: var(--ink-70);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.nav-menu a:hover, .nav-menu a.current-menu-item { color: var(--ink); background: var(--surface); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-search-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-70); transition: all 0.2s; font-size: 15px;
}
.nav-search-btn:hover { background: var(--teal-lt); color: var(--teal); border-color: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, var(--cream) 0%, #F0E8FF 50%, var(--teal-lt) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.hero-orb-1 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,74,0.12) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-orb-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,160,0.1) 0%, transparent 70%);
  bottom: -80px; left: -80px; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--violet-lt), var(--rose-lt));
  border: 1px solid rgba(124,58,237,0.25);
  padding: 8px 20px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; color: var(--violet);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sunrise); animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--sunrise); }
.hero-title .hero-accent {
  background: linear-gradient(135deg, var(--violet), var(--rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.hero-sub {
  font-size: 18px; color: var(--ink-45); max-width: 560px;
  margin: 0 auto 44px; font-weight: 300; line-height: 1.75;
}
.hero-search-box {
  max-width: 740px; margin: 0 auto 20px;
  background: #fff;
  border: 2px solid var(--border-md);
  border-radius: var(--radius-pill);
  display: flex; align-items: center;
  padding: 8px 8px 8px 28px;
  box-shadow: var(--shadow-xl);
  transition: all 0.25s;
}
.hero-search-box:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 6px rgba(14,165,160,0.12), var(--shadow-xl);
}
.hero-search-box input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 16px; color: var(--ink); padding-right: 12px;
}
.hero-search-box input::placeholder { color: var(--ink-20); }
.hero-search-btn {
  background: linear-gradient(135deg, var(--sunrise), var(--rose));
  color: #fff; border: none;
  border-radius: var(--radius-pill);
  padding: 13px 30px; font-size: 14px; font-weight: 500;
  transition: all 0.2s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,107,74,0.4);
}
.hero-search-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,74,0.5); }
.hero-filter-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.filter-chip {
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.8); border: 1.5px solid var(--border-md);
  font-size: 13px; font-weight: 400; color: var(--ink-70);
  transition: all 0.2s; cursor: pointer; backdrop-filter: blur(4px);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
  transform: translateY(-2px);
}
.filter-chip.active-teal   { background: var(--teal);   color: #fff; border-color: var(--teal); }
.filter-chip.active-violet { background: var(--violet); color: #fff; border-color: var(--violet); }
.filter-chip.active-rose   { background: var(--rose);   color: #fff; border-color: var(--rose); }

/* ===== STATS ROW ===== */
.stats-bar {
  background: var(--ink); padding: 36px 0;
}
.stats-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  text-align: center; padding: 12px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 600; color: #fff;
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
.stat-unit { font-size: 20px; color: var(--sunrise); }

/* ===== CATEGORY CARDS ===== */
.categories-section { background: var(--surface); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 16px;
}
.cat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 18px;
  text-align: center; transition: all 0.25s;
  display: block; position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card.c-sunrise::after { background: var(--sunrise); }
.cat-card.c-teal::after    { background: var(--teal); }
.cat-card.c-gold::after    { background: var(--gold); }
.cat-card.c-violet::after  { background: var(--violet); }
.cat-card.c-rose::after    { background: var(--rose); }
.cat-card.c-mint::after    { background: var(--mint); }
.cat-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px;
  transition: transform 0.2s;
}
.cat-card:hover .cat-icon-wrap { transform: scale(1.1) rotate(4deg); }
.cat-card h3 { font-size: 15px; font-weight: 500; color: var(--ink); }
.cat-card p  { font-size: 12px; color: var(--ink-45); margin-top: 4px; }

/* ===== NAME CARDS ===== */
.names-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}
.name-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.25s; cursor: pointer; position: relative;
}
.name-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.name-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.name-display {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500; color: var(--ink); line-height: 1;
}
.name-sub { font-size: 11px; color: var(--ink-45); text-transform: uppercase; letter-spacing: 0.07em; margin: 5px 0; }
.name-meaning { font-size: 13px; color: var(--ink-70); line-height: 1.55; }
.name-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.name-rank-tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; color: var(--ink-45);
}
.heart-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink-45); transition: all 0.2s;
  flex-shrink: 0;
}
.heart-btn:hover, .heart-btn.loved {
  background: var(--rose-lt); border-color: var(--rose); color: var(--rose);
}

/* ===== NAME STORY SECTION ===== */
.stories-section { background: linear-gradient(160deg, #FFF8F0 0%, #F0F0FF 100%); }
.story-layout {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: start;
}
.story-featured-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.story-banner {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.story-banner-name {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 600; line-height: 1;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 4px 24px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.story-banner-gradient-1 { background: linear-gradient(135deg, #FF6B4A 0%, #7C3AED 50%, #0EA5A0 100%); }
.story-banner-gradient-2 { background: linear-gradient(135deg, #0EA5A0 0%, #0EA5E9 100%); }
.story-banner-gradient-3 { background: linear-gradient(135deg, #F0A500 0%, #FF6B4A 100%); }
.story-card-body { padding: 32px; }
.story-name-head {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 500; color: var(--ink); margin-bottom: 4px;
}
.story-origin-line { font-size: 12px; color: var(--ink-45); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.story-text { font-size: 14px; color: var(--ink-70); line-height: 1.85; }
.story-quote {
  margin: 20px 0; padding: 18px 22px;
  border-left: 4px solid var(--sunrise);
  background: linear-gradient(90deg, rgba(255,107,74,0.06), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 18px; font-style: italic; color: var(--ink); line-height: 1.6;
}
.story-meta-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px;
}
.story-meta-box {
  flex: 1; min-width: 72px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px; text-align: center;
}
.story-meta-val { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); }
.story-meta-key { font-size: 10px; color: var(--ink-45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.story-list { display: flex; flex-direction: column; gap: 14px; }
.story-mini-link {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; gap: 16px; align-items: center;
  transition: all 0.22s;
}
.story-mini-link:hover { transform: translateX(5px); box-shadow: var(--shadow); border-color: var(--teal); }
.story-mini-letter {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 30px; font-weight: 500;
  flex-shrink: 0;
}
.story-mini-info h4 { font-size: 15px; font-weight: 500; color: var(--ink); }
.story-mini-info p { font-size: 12px; color: var(--ink-45); margin-top: 3px; line-height: 1.5; }

/* ===== NAME FINDER SECTION ===== */
.finder-section {
  background: linear-gradient(160deg, var(--ink) 0%, #2D1560 60%, #0D4A47 100%);
  position: relative; overflow: hidden;
}
.finder-section::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  border-radius: 50%; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(255,107,74,0.15) 0%, transparent 70%);
}
.finder-section::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; bottom: -150px; left: -50px;
  background: radial-gradient(circle, rgba(14,165,160,0.12) 0%, transparent 70%);
}
.finder-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative;
}
.finder-form-wrap { display: flex; flex-direction: column; gap: 14px; }
.finder-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 5px; display: block; }
.finder-input, .finder-select {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: #fff; font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.finder-input::placeholder { color: rgba(255,255,255,0.3); }
.finder-input:focus, .finder-select:focus { border-color: var(--teal); }
.finder-select option { background: #1E0A3C; color: #fff; }
.finder-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.finder-btn {
  width: 100%; padding: 16px; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--sunrise), var(--rose));
  color: #fff; border: none; font-size: 15px; font-weight: 500;
  transition: all 0.22s; display: flex; align-items: center;
  justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(255,107,74,0.4);
}
.finder-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,107,74,0.5); }
.finder-btn svg { width: 20px; height: 20px; }
.finder-results { display: flex; flex-direction: column; gap: 12px; }
.finder-result-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 20px 24px; transition: all 0.2s;
}
.finder-result-card:hover { background: rgba(255,255,255,0.12); }
.finder-result-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500; color: #fff;
}
.finder-result-meaning { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.finder-match { font-size: 12px; color: var(--teal); margin-top: 8px; font-weight: 500; }
.finder-tag { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 6px; }

/* ===== ALPHA BROWSER ===== */
.alpha-section { background: var(--surface); }
.alpha-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.alpha-btn {
  width: 54px; height: 54px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; color: var(--ink);
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.alpha-btn:hover {
  background: var(--sunrise); color: #fff;
  border-color: var(--sunrise); transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,74,0.3);
}

/* ===== EMOTION SECTION ===== */
.emotion-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.emotion-card {
  border-radius: var(--radius); padding: 30px; cursor: pointer;
  transition: all 0.25s; display: block;
}
.emotion-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.emotion-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  background: rgba(255,255,255,0.45);
}
.emotion-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.emotion-card p { font-size: 13px; opacity: 0.7; }
.emotion-card .e-count { font-family: var(--font-display); font-size: 36px; font-weight: 300; margin-top: 18px; opacity: 0.3; }
.ec-peace    { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); color: #065F46; }
.ec-love     { background: linear-gradient(135deg, #FDE2F0, #FBCFE8); color: #9D174D; }
.ec-power    { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); color: #4C1D95; }
.ec-wisdom   { background: linear-gradient(135deg, #FEF3D0, #FDE68A); color: #78350F; }
.ec-blessing { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); color: #0C4A6E; }
.ec-joy      { background: linear-gradient(135deg, #FFF0EC, #FED7AA); color: #7C2D12; }

/* ===== SWIPE SECTION ===== */
.swipe-section {
  background: linear-gradient(135deg, #FF6B4A 0%, #F43F8E 50%, #7C3AED 100%);
  padding: 80px 0; text-align: center;
}
.swipe-card-demo {
  max-width: 290px; margin: 40px auto 0;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 28px; padding: 40px 32px;
  backdrop-filter: blur(10px);
}
.swipe-name-text {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 400; color: #fff; line-height: 1;
}
.swipe-meaning-text { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 10px; }
.swipe-tags-text { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.swipe-actions { display: flex; gap: 18px; justify-content: center; margin-top: 28px; }
.swipe-action-btn {
  width: 60px; height: 60px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: all 0.2s;
}
.swipe-pass { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.swipe-pass:hover { background: rgba(255,80,80,0.3); transform: scale(1.12); }
.swipe-love { background: rgba(255,255,255,0.9); color: #F43F8E; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.swipe-love:hover { background: #fff; transform: scale(1.12); }
.swipe-save { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.swipe-save:hover { background: rgba(240,165,0,0.3); transform: scale(1.12); }

/* ===== PET NAMES SECTION ===== */
.pet-section { background: linear-gradient(160deg, #F5F0FF 0%, #E0F7F6 100%); }
.pet-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.pet-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  text-align: center; transition: all 0.25s; cursor: pointer;
}
.pet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pet-emoji { font-size: 42px; margin-bottom: 14px; }
.pet-card h3 { font-size: 16px; font-weight: 500; color: var(--ink); }
.pet-card p  { font-size: 12px; color: var(--ink-45); margin-top: 4px; }
.pet-count   { font-size: 22px; font-family: var(--font-display); color: var(--violet); font-weight: 600; margin-top: 8px; }

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.25s; display: block;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 155px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.blog-thumb-text {
  font-family: var(--font-display);
  font-size: 56px; color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
.blog-body   { padding: 22px 24px; }
.blog-cat    { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 10px; }
.blog-body h3 { font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.blog-body p  { font-size: 13px; color: var(--ink-45); margin-top: 8px; line-height: 1.65; }
.blog-meta   { font-size: 11px; color: var(--ink-45); margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-20); }

/* ===== NAME DETAIL PAGE ===== */
.name-detail-hero {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, var(--cream) 0%, #F0E8FF 100%);
}
.name-detail-layout {
  display: grid; grid-template-columns: 2fr 1fr; gap: 48px;
}
.name-detail-main h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300; color: var(--ink); line-height: 1; letter-spacing: -2px;
}
.name-phonetic { font-size: 18px; color: var(--ink-45); font-style: italic; margin: 12px 0 6px; }
.name-detail-meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.name-detail-section { margin: 36px 0; }
.name-detail-section h2 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-45); font-weight: 500; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.name-detail-section h2::after {
  content: ''; flex: 1; height: 1px; background: var(--border); max-width: 100px;
}
.name-story-text { font-size: 15px; color: var(--ink-70); line-height: 1.9; }
.name-stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.name-stat-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; text-align: center;
}
.name-stat-val { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); }
.name-stat-key { font-size: 11px; color: var(--ink-45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.similar-names-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.similar-name-pill {
  font-family: var(--font-display); font-size: 16px;
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--ink-70); transition: all 0.2s;
}
.similar-name-pill:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.pop-year-bar { margin: 8px 0; }
.pop-year-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-45); margin-bottom: 4px; }
.pop-track { height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.pop-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--violet)); border-radius: 4px; transition: width 1s ease; }
.name-sidebar-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
}
.name-sidebar-card h3 { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 16px; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(22,11,46,0.6); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream); border-radius: var(--radius-lg);
  max-width: 660px; width: 100%; max-height: 90vh;
  overflow-y: auto; padding: 44px;
  box-shadow: var(--shadow-xl); position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close-btn {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-70); transition: all 0.2s;
}
.modal-close-btn:hover { background: var(--rose-lt); color: var(--rose); }
.modal-name-big {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 300; color: var(--ink); line-height: 1;
}
.modal-section-head { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-45); font-weight: 500; margin: 22px 0 10px; }
.modal-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.modal-stat-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.modal-stat-val { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); }
.modal-stat-key { font-size: 10px; color: var(--ink-45); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; }
.modal-story p { font-size: 14px; color: var(--ink-70); line-height: 1.85; }
.modal-footer-row { display: flex; gap: 12px; margin-top: 28px; }
.modal-footer-row .btn { flex: 1; justify-content: center; }

/* ===== NOTICE BANNERS ===== */
.notice-bar {
  padding: 14px 5vw; text-align: center;
  font-size: 13px; font-weight: 500;
}
.notice-bar.success { background: var(--mint-lt); color: #065F46; }
.notice-bar.info    { background: var(--sky-lt);  color: #0C4A6E; }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); }
.footer-top-bar {
  background: linear-gradient(135deg, var(--sunrise), var(--rose), var(--violet));
  height: 4px;
}
.footer-inner {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer-brand-logo {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  color: #fff; margin-bottom: 14px; display: block;
}
.footer-brand-logo span { color: var(--sunrise); }
.footer-tagline { font-size: 13px; line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; font-weight: 500; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 16px; }
.footer-heart { color: var(--sunrise); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .finder-inner, .story-layout, .name-detail-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .stats-grid .stat-item { padding: 12px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-grid .stat-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .modal-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { letter-spacing: -0.5px; }
  .hero-search-box { flex-direction: column; border-radius: var(--radius); padding: 12px; }
  .hero-search-btn { width: 100%; justify-content: center; }
}

/* ===== WP PAGINATION ===== */
.wp-pagination {
  display: flex; justify-content: center; gap: 8px; margin: 48px 0;
}
.wp-pagination .page-numbers {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  background: #fff; font-size: 14px; color: var(--ink-70); transition: all 0.2s;
}
.wp-pagination .page-numbers.current,
.wp-pagination .page-numbers:hover {
  background: var(--teal); color: #fff; border-color: var(--teal);
}

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 13px; color: var(--ink-45); display: flex; gap: 8px; align-items: center; margin-bottom: 24px; }
.breadcrumb a { color: var(--teal); }
.breadcrumb-sep { color: var(--ink-20); }

/* ===== COPY FREE IMAGE GALLERY ===== */
.hero-images-row {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 44px; flex-wrap: wrap;
}
.hero-img-frame {
  width: 90px; height: 90px; border-radius: 50%;
  overflow: hidden; border: 3px solid #fff;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.hero-img-frame:nth-child(2) { animation-delay: 0.5s; width: 110px; height: 110px; }
.hero-img-frame:nth-child(3) { animation-delay: 1s; }
.hero-img-frame:nth-child(4) { animation-delay: 1.5s; width: 110px; height: 110px; }
.hero-img-frame:nth-child(5) { animation-delay: 2s; }
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ===== ALIGNMENT FIXES ===== */
/* Filter chips — perfect center alignment */
.hero-filter-row { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; align-items:center; }
.filter-chip { display:inline-flex; align-items:center; justify-content:center; white-space:nowrap; }

/* Name cards — equal height grid */
.names-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(210px, 1fr)); gap:18px; align-items:start; }
.name-card { display:flex; flex-direction:column; height:100%; }
.name-badges { margin-top:auto; padding-top:14px; }

/* Finder form — full width consistent inputs */
.finder-input, .finder-select { width:100%; }
.finder-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* Stats bar — centered, equal columns */
.stats-grid { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; }
.stat-item { flex:1; min-width:140px; text-align:center; padding:12px 24px; }

/* Category grid — equal height cards */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(155px, 1fr)); gap:16px; }
.cat-card { display:flex; flex-direction:column; align-items:center; height:100%; }

/* Blog grid — equal height */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(300px, 1fr)); gap:24px; align-items:start; }
.blog-card { display:flex; flex-direction:column; height:100%; }
.blog-body { flex:1; }

/* Emotion grid — equal height */
.emotion-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(250px, 1fr)); gap:18px; }
.emotion-card { display:flex; flex-direction:column; }

/* Pet grid — equal height */
.pet-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(200px, 1fr)); gap:18px; }
.pet-card { display:flex; flex-direction:column; align-items:center; }

/* Story layout — consistent gap */
.story-layout { display:grid; grid-template-columns:1.4fr 1fr; gap:48px; align-items:start; }

/* Name detail layout */
.name-detail-layout { display:grid; grid-template-columns:2fr 1fr; gap:48px; }

/* Footer — proper alignment */
.footer-inner { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:48px; }

/* Mobile fixes */
@media (max-width:1024px) {
  .story-layout, .name-detail-layout, .finder-inner { grid-template-columns:1fr; gap:32px; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:28px; }
}
@media (max-width:768px) {
  .finder-grid-2 { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:24px; }
  .stats-grid { flex-direction:column; }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); width:100%; }
  .stat-item:last-child { border-bottom:none; }
  .names-grid { grid-template-columns:repeat(auto-fill, minmax(160px, 1fr)); gap:12px; }
  .blog-grid { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns:repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width:480px) {
  .hero-search-box { flex-direction:column; border-radius:var(--radius); padding:12px; }
  .hero-search-btn { width:100%; justify-content:center; border-radius:var(--radius-pill); }
  .names-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .pet-grid { grid-template-columns:1fr 1fr; }
}

/* ===== ULTRA LIVELY UPGRADE — BUTTONS & GRADIENTS ===== */

/* Primary button — electric coral with glow */
.btn-primary {
  background: linear-gradient(135deg, #FF4D2E, #FF2D78) !important;
  box-shadow: 0 6px 28px rgba(255,45,120,.4) !important;
  color: #fff !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #CC2A0A, #CC0055) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 36px rgba(255,45,120,.5) !important;
}

/* Teal button */
.btn-teal {
  background: linear-gradient(135deg, #00B5AD, #0090FF) !important;
  box-shadow: 0 6px 28px rgba(0,181,173,.35) !important;
}
.btn-teal:hover { background: linear-gradient(135deg,#007A75,#006ACC) !important; }

/* Hero search button */
.hero-search-btn {
  background: linear-gradient(135deg, #FF4D2E, #F0006B) !important;
  box-shadow: 0 6px 24px rgba(255,0,107,.45) !important;
}

/* Hero background — more vibrant */
.hero {
  background: linear-gradient(160deg, #FFFCF8 0%, #EDE0FF 45%, #DFFAFA 100%) !important;
}

/* Ticker bar — richer violet */
.ticker-bar {
  background: linear-gradient(135deg, #6B21F4, #9B1AF5) !important;
}

/* Nav logo accent */
.site-logo span { color: #FF4D2E !important; }

/* Category cards — more electric hover */
.cat-card.c-sunrise::after { background: linear-gradient(90deg, #FF4D2E, #FF2D78) !important; }
.cat-card.c-teal::after    { background: linear-gradient(90deg, #00B5AD, #0090FF) !important; }
.cat-card.c-gold::after    { background: linear-gradient(90deg, #FF9500, #FF4D2E) !important; }
.cat-card.c-violet::after  { background: linear-gradient(90deg, #6B21F4, #F0006B) !important; }
.cat-card.c-rose::after    { background: linear-gradient(90deg, #F0006B, #FF2D78) !important; }
.cat-card.c-mint::after    { background: linear-gradient(90deg, #00C48C, #00B5AD) !important; }

/* Name card border on hover — electric teal */
.name-card:hover { border-color: #00B5AD !important; box-shadow: 0 12px 48px rgba(0,181,173,.18) !important; }

/* Filter chip active state — more vivid */
.filter-chip.active         { background: #0F0820 !important; color: #fff !important; }
.filter-chip.active-teal    { background: linear-gradient(135deg,#00B5AD,#0090FF) !important; color:#fff !important; border-color:transparent !important; }
.filter-chip.active-violet  { background: linear-gradient(135deg,#6B21F4,#9B1AF5) !important; color:#fff !important; border-color:transparent !important; }
.filter-chip.active-rose    { background: linear-gradient(135deg,#F0006B,#FF2D78) !important; color:#fff !important; border-color:transparent !important; }

/* Alpha browser button hover — electric */
.alpha-btn:hover {
  background: linear-gradient(135deg,#FF4D2E,#FF2D78) !important;
  border-color: transparent !important;
  box-shadow: 0 8px 24px rgba(255,45,120,.35) !important;
}

/* Emotion cards — more saturated */
.ec-peace    { background: linear-gradient(135deg, #CCFAEC, #99F5D8) !important; color: #004D33 !important; }
.ec-love     { background: linear-gradient(135deg, #FFE0F0, #FFB3D9) !important; color: #7A0040 !important; }
.ec-power    { background: linear-gradient(135deg, #EEE5FF, #D4C0FF) !important; color: #35007A !important; }
.ec-wisdom   { background: linear-gradient(135deg, #FFF3DC, #FFE0A0) !important; color: #664400 !important; }
.ec-blessing { background: linear-gradient(135deg, #E0F2FF, #B3DEFF) !important; color: #003D7A !important; }
.ec-joy      { background: linear-gradient(135deg, #FFF0DC, #FFD4A0) !important; color: #663300 !important; }

/* Story quote border — vivid */
.story-quote { border-left-color: #FF4D2E !important; }

/* Pet section bg */
.pet-section { background: linear-gradient(160deg, #EEE5FF 0%, #DFFAFA 100%) !important; }

/* Finder section — deeper */
.finder-section {
  background: linear-gradient(160deg, #0F0820 0%, #200C60 60%, #062420 100%) !important;
}

/* Stats bar */
.stats-bar { background: linear-gradient(135deg, #0F0820, #200C60) !important; }

/* CTA banner */
.footer-top-bar {
  background: linear-gradient(90deg, #FF4D2E, #F0006B, #6B21F4) !important;
  height: 5px !important;
}

/* Badge colors — more saturated */
.badge-hindu     { background: #FFF0EC !important; color: #A01800 !important; border-color: #FFB8A8 !important; }
.badge-muslim    { background: #DFFAFA !important; color: #005555 !important; border-color: #99E8E5 !important; }
.badge-sikh      { background: #FFF3DC !important; color: #774400 !important; border-color: #FFD080 !important; }
.badge-christian { background: #E0F2FF !important; color: #003D7A !important; border-color: #99CCFF !important; }
.badge-boy       { background: #E0F2FF !important; color: #003D99 !important; border-color: #80BBFF !important; }
.badge-girl      { background: #FFE0F0 !important; color: #880040 !important; border-color: #FF80C0 !important; }
.badge-trending  { background: linear-gradient(135deg,#FFF0EC,#FFE0F0) !important; color: #CC2A0A !important; border-color: rgba(255,77,46,.25) !important; }

/* Popularity bar — vivid gradient */
.pop-fill { background: linear-gradient(90deg, #00B5AD, #6B21F4) !important; }

/* Similar name pill hover */
.similar-name-pill:hover { background: #00B5AD !important; color: #fff !important; border-color: #00B5AD !important; }

/* Footer social links hover */
.footer-social a:hover { color: #FF4D2E !important; }

/* Heart button loved state */
.heart-btn.loved { background: #FFE0F0 !important; border-color: #F0006B !important; color: #F0006B !important; }

/* Section eyebrow decorators */
.section-eyebrow::before, .section-eyebrow::after { background: currentColor !important; }

/* Scroll reveal — smoother */
.reveal { transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1) !important; }

/* Blog card hover */
.blog-card:hover { border-color: #6B21F4 !important; box-shadow: 0 16px 48px rgba(107,33,244,.15) !important; }

/* Story mini link hover */
.story-mini-link:hover { border-color: #00B5AD !important; box-shadow: 0 4px 20px rgba(0,181,173,.15) !important; }

/* Mobile menu links */
#mobile-menu a { font-family: var(--font-display); font-size: 32px; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--border); display: block; }

/* Word glow on hover for name cards */
.name-display { transition: color .2s; }
.name-card:hover .name-display { color: var(--violet) !important; }

/* Kundali section colors */
.tn-kundali-wrap .finder-input:focus,
.tn-kundali-wrap .finder-select:focus { border-color: var(--gold) !important; }
