
:root {
  --fried-orange: #ffb047;
  --fried-gold:   #ffcf4a;
  --fried-pink:   #ff4f7d;
  --fried-teal:   #00a1a1;
  --fried-dark:   #0b0613;
  --fried-deep:   #050109;

  --text-main:    #fdfaf6;
  --text-muted:   #c9bfd4;
  --card-bg:      rgba(10, 5, 24, 0.94);
  --border-subtle:#2a1c3e;

  --radius-lg:    24px;
  --radius-pill:  999px;
  --shadow-soft:  0 22px 60px rgba(0, 0, 0, 0.55);

  --font-main: system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body.fried-body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, #3d1748 0, #14041f 35%, #050109 70%),
    radial-gradient(circle at bottom right, #003b46 0, #050109 55%);
  background-color: var(--fried-deep);
}

/* Header / nav */

.fried-header {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fried-logo-area {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.fried-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-main);
}

.fried-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fried-nav {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
}

.fried-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.fried-nav a:hover {
  color: var(--fried-gold);
}

/* Main layout */

.fried-main {
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 0 16px 32px;
}

.fried-main-narrow {
  max-width: 760px;
}

.fried-article {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 26px;
}

.fried-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fried-gold);
  margin: 0 0 8px;
}

.fried-article h1 {
  font-size: 2.1rem;
  margin: 0 0 10px;
}

.fried-article h2 {
  font-size: 1.25rem;
  margin: 1.8rem 0 0.4rem;
}

.fried-article h3 {
  font-size: 1.05rem;
  margin: 1.4rem 0 0.4rem;
}

.fried-article p,
.fried-article li {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-main);
}

.fried-article ul,
.fried-article ol {
  padding-left: 1.25rem;
}

.fried-article a {
  color: var(--fried-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.fried-article a:hover {
  color: var(--fried-pink);
}

/* Tags & guide switcher */

.fried-tags {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fried-guide-switcher {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fried-guide-switcher a {
  color: var(--fried-gold);
  text-decoration: underline;
}

.fried-guide-switcher a:hover {
  color: var(--fried-pink);
}

/* Footer */

.fried-footer {
  max-width: 960px;
  margin: 0 auto 24px;
  padding: 0 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 720px) {
  .fried-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .fried-nav {
    margin-top: 4px;
  }

  .fried-article {
    padding: 18px 16px 22px;
  }

  .fried-article h1 {
    font-size: 1.7rem;
  }
}

/* More guides block & pill tags */
.more-guides {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.more-guides ul {
  padding-left: 1.1rem;
  margin: 6px 0 0;
}

.more-guides a {
  text-decoration: underline;
  color: var(--fried-gold);
}

.more-guides a:hover {
  color: var(--fried-pink);
}

.pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,176,71,0.08);
  border: 1px solid rgba(255,176,71,0.35);
  color: var(--fried-gold);
  margin-right: 6px;
  margin-bottom: 8px;
}
