/* ═══ LightsCameraKitchen — Euro Kitchen Theme ═══ */
:root {
  --bg-base: #eef1f6;
  --bg-surface: #f8f9fc;
  --bg-elevated: #e2e6ed;
  --text-primary: #1a1a2e;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --accent-yellow: #eab308;
  --accent-yellow-hover: #ca8a04;
  --accent-green: #16a34a;
  --accent-green-hover: #15803d;
  --success: #16a34a;
  --danger: #dc2626;
  --border: rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}



/* ═══ Typography ═══ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { color: var(--text-secondary); }

a { color: var(--accent-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-blue-hover); }

/* ═══ Utility ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-yellow { color: var(--accent-yellow); }
.text-blue { color: var(--accent-blue); }
.text-green { color: var(--accent-green); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  border: none; border-radius: var(--radius);
  cursor: pointer; transition: all 0.25s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-yellow { background: var(--accent-yellow); color: #000; box-shadow: 0 2px 8px rgba(234,179,8,0.25), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-yellow:hover { background: var(--accent-yellow-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(250,204,21,0.3); }
.btn-blue { background: var(--accent-blue); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,0.25), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-blue:hover { background: var(--accent-blue-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,130,246,0.3); }
.btn-outline { background: transparent; color: var(--text-primary); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 50%; }

/* ═══ Sections ═══ */
section {
  min-height: 80vh;
  display: flex; align-items: center;
  padding: 6rem 0;
  position: relative;
}
section:nth-child(even) {
  background: linear-gradient(180deg, #f0f4ff 0%, #fefce8 100%);
  position: relative;
}
section:nth-child(even)::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eab308' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ═══ Navigation ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: rgba(238,241,246,0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue) 50%, var(--accent-yellow) 50%, var(--accent-yellow) 100%);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.nav-logo span { color: var(--accent-blue); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-blue); }
.nav-cta { display: flex; gap: 0.75rem; }

/* ═══ Hero ═══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #dbeafe 0%, #fef9c3 30%, var(--bg-base) 70%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.1); }
  50% { box-shadow: 0 0 30px rgba(59,130,246,0.25); }
}
.hero h1 { margin-bottom: 1.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.06); }
.hero h1 .line-break { display: block; }
.hero p { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 600px; margin-inline: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Floating decorative elements */
.hero-deco {
  position: absolute;
  font-size: 3rem;
  opacity: 0.12;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-deco:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-deco:nth-child(2) { top: 25%; right: 10%; animation-delay: 1.5s; font-size: 2.5rem; }
.hero-deco:nth-child(3) { bottom: 20%; left: 12%; animation-delay: 3s; font-size: 2rem; }
.hero-deco:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 4.5s; font-size: 2.75rem; }
.hero-deco:nth-child(5) { top: 45%; left: 3%; animation-delay: 2s; font-size: 2rem; }
.hero-deco:nth-child(6) { top: 60%; right: 5%; animation-delay: 3.5s; font-size: 2.25rem; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}



/* ═══ Cards / Tease Grid ═══ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.75rem; }

/* ═══ Stats Row ═══ */
.stats-row {
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
  margin: 3rem 0;
}
.stat { text-align: center; }
.stat-value { font-size: 3rem; font-weight: 800; color: var(--accent-yellow); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ═══ Testimonial / About Block ═══ */
.about-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.about-image {
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}

/* ═══ Email Capture ═══ */
.signup-form {
  display: flex; gap: 0.75rem;
  max-width: 500px; margin: 0 auto;
}
.signup-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.signup-form input { box-shadow: 0 2px 6px rgba(0,0,0,0.04), inset 0 1px 2px rgba(0,0,0,0.02); }
.signup-form input::placeholder { color: var(--text-muted); }
.signup-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.5em;
}
.signup-msg.success { color: var(--success); }
.signup-msg.error { color: var(--danger); }

/* ═══ Social Proof / Testimonials ═══ */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial::before { content: '"'; position: absolute; top: 0.5rem; left: 1rem; font-size: 4rem; color: var(--accent-yellow); opacity: 0.2; line-height: 1; }
.testimonial p { font-style: italic; margin-bottom: 1rem; position: relative; z-index: 1; }
.testimonial-author { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }

/* ═══ Scroll Animations ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ Modal ═══ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  padding: 1rem;
}
.modal {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--text-muted); font-size: 1.5rem;
  cursor: pointer;
}
.modal h2 { margin-bottom: 0.75rem; }
.modal p { margin-bottom: 1.5rem; }

/* ═══ Footer ═══ */
.footer {
  padding: 3rem 0;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-yellow) 50%, var(--accent-green) 100%) 1;
  text-align: center;
  background: #f8f9fc;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232563eb' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1.5'/%3E%3Ccircle cx='13' cy='13' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.footer p { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent-blue); }

/* ═══ Admin / Login Pages ═══ */
.page-center {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #fef9c3 50%, #dcfce7 100%);
  padding: 2rem;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.auth-card h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.auth-card p { margin-bottom: 1.5rem; font-size: 0.9rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.5rem; }
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--accent-blue); }
.form-msg { margin-top: 1rem; font-size: 0.85rem; min-height: 1.5em; }

/* ═══ Admin Dashboard ═══ */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, #1e3a5f 0%, #1a2d47 100%);
  padding: 1.5rem;
  display: flex; flex-direction: column;
}
.admin-sidebar .logo { font-size: 1.1rem; font-weight: 700; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.15); color: #fff; }
.admin-sidebar .logo span { color: var(--accent-yellow); }
.admin-nav { list-style: none; flex: 1; }
.admin-nav li { margin-bottom: 0.25rem; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s;
}
.admin-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.admin-nav a.active { background: rgba(37,99,235,0.4); color: #fff; }
.admin-main { flex: 1; padding: 2rem; overflow-y: auto; background: var(--bg-base); }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.admin-header h1 { font-size: 1.5rem; }

.stat-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stat-card .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card .value { font-size: 2rem; font-weight: 700; margin-top: 0.25rem; }
.stat-card .value.yellow { color: var(--accent-yellow); }
.stat-card .value.blue { color: var(--accent-blue); }
.stat-card-blue { border-left: 4px solid var(--accent-blue); }
.stat-card-yellow { border-left: 4px solid var(--accent-yellow); }
.stat-card-green { border-left: 4px solid var(--accent-green); }

/* ═══ Geo Chart ═══ */
.geo-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.geo-list { display: flex; flex-direction: column; gap: 0.5rem; }
.geo-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.4rem 0;
}
.geo-flag { font-size: 1.25rem; width: 2rem; text-align: center; }
.geo-country { font-size: 0.85rem; font-weight: 600; width: 3rem; color: var(--text-primary); }
.geo-bar-wrap {
  flex: 1; height: 8px;
  background: var(--bg-elevated);
  border-radius: 4px;
  overflow: hidden;
}
.geo-bar {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
  transition: width 0.4s ease;
  min-width: 4px;
}
.geo-bar.geo-bar-yellow {
  background: linear-gradient(90deg, var(--accent-yellow), #fbbf24);
}
.geo-count { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); width: 3.5rem; text-align: right; }

/* ═══ Add Admin Card ═══ */
.add-admin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-blue);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Admin Table */
.table-wrap { overflow-x: auto; }
.table-wrap table { background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { border-bottom: 2px solid var(--border); }
th { text-align: left; padding: 0.75rem 1rem; color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
tr:hover { background: rgba(0,0,0,0.02); }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-admin { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.badge-approved { background: rgba(34,197,94,0.15); color: var(--success); }
.badge-pending { background: rgba(234,179,8,0.15); color: #eab308; }
.badge-denied { background: rgba(239,68,68,0.15); color: var(--danger); }

/* ═══ Countdown / Coming Soon ═══ */
.countdown {
  display: flex; gap: 1.5rem; justify-content: center; margin: 2rem 0;
}
.countdown-item { text-align: center; }
.countdown-value {
  font-size: 3rem; font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

/* ═══ Share Button ═══ */
.share-row { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }

/* ═══ Feature Cards ═══ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-yellow));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(59,130,246,0.2);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══ SEO & LLM Section ═══ */
.seo-guide-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-blue);
}
.seo-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.seo-file-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.seo-file-card p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.5; }
.seo-file-card strong { font-size: 0.9rem; }
.seo-file-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }

.seo-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.seo-recs { display: flex; flex-direction: column; gap: 0.75rem; }
.seo-rec-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--border);
}
.seo-rec-high { border-left-color: var(--danger); }
.seo-rec-medium { border-left-color: var(--accent-yellow); }
.seo-rec-low { border-left-color: var(--accent-green); }
.seo-rec-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.seo-rec-icon { font-size: 1.1rem; }
.seo-rec-title { font-weight: 600; font-size: 0.95rem; }
.seo-rec-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: auto;
}
.badge-high { background: rgba(220,38,38,0.12); color: var(--danger); }
.badge-medium { background: rgba(234,179,8,0.15); color: #a16207; }
.badge-low { background: rgba(22,163,74,0.12); color: var(--accent-green); }
.seo-rec-detail { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

.seo-code-preview {
  background: #1a1a2e;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  overflow-x: auto;
}
.seo-code-preview pre {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}

.seo-checklist { display: flex; flex-direction: column; gap: 0.5rem; }
.seo-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.seo-check-item a { font-size: 0.85rem; }
.seo-check-pass span { flex-shrink: 0; }
.seo-check-warn span { flex-shrink: 0; }

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { min-height: 90vh; padding: 6rem 0 4rem; }
  .about-block { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { gap: 2rem; }
  .signup-form { flex-direction: column; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 1rem; }
  .admin-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  section { min-height: auto; padding: 4rem 0; }
  .countdown { gap: 1rem; }
  .countdown-value { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stat-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
}

/* ═══ Scrollbar ═══ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ═══ Loading Spinner ═══ */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
