:root {
  --bg: #fff7ed;
  --text: #1f2937;
  --muted: #6b7280;

  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --green: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

body {
  background: linear-gradient(180deg, #fff7ed, #fdf2f8);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2.5rem 1.5rem;
}

/* HEADER */
.header {
  background: white;
  border-bottom: 2px solid #fde68a;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
}

.random-btn {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border: none;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* HERO */
.hero {
  margin-top: 3rem;
}

/* .hero h2 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  -webkit-text-fill-color: transparent;
} */

footer {
    text-align: center;
    padding: 28px;
    margin-top: 60px;
    font-size: 0.95rem;
}


.hero p {
  margin-top: 0.8rem;
  color: var(--muted);
}

/* SECTIONS */
.section {
  margin-top: 4rem;
}

.section h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* FEATURED */
.featured {
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfeff, #f0fdf4);
}

.featured h4 {
  font-size: 1.2rem;
}

.featured p {
  margin-top: 0.3rem;
  color: var(--muted);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.2rem;
  border-radius: 14px;
  background: white;
  border: 2px solid #f1f5f9;
}

.card h4 {
  font-size: 1rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--blue);
  font-weight: 500;
}

/* FOOTER */
.footer {
  margin-top: 5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

p {
  margin-bottom: 0.5rem;
}

.compat {
  font-size: 0.8rem;
  opacity: 0.85;
}

.compat {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 0.85rem;
  color: #6c7c9d;
}

@media (max-width: 768px) {
  .compat {
    display: block !important;
  }
}

/* SEO SUPPORTING TEXT */
.seo-blurb {
  margin-top: 4rem;
}

.seo-blurb p {
  color: #6c7c9d;
  font-size: 0.95rem;
  max-width: 680px;
  line-height: 1.7;
}

/* .seo-blurb {
  opacity: 0.9;
} */
