/* FastCakes.com — image-first manga dessert comedy */
:root {
  --bg: #130716;
  --bg2: #220b24;
  --panel: #fff8e8;
  --ink: #171018;
  --cream: #fff3cf;
  --pink: #ff4fa3;
  --hotpink: #ff2f8f;
  --blue: #19b7ff;
  --yellow: #ffd337;
  --orange: #ff8c21;
  --green: #81e35d;
  --shadow: rgba(0,0,0,.38);
  --max: 1180px;
}

* { 
  box-sizing: border-box; 
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff7e9;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,79,163,.25), transparent 26rem),
    radial-gradient(circle at 85% 0%, rgba(25,183,255,.22), transparent 25rem),
    linear-gradient(180deg, var(--bg), var(--bg2) 55%, #09050b);
  line-height: 1.55;
}

a { 
  color: inherit; 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: .75rem;
  z-index: 9999;
}

.skip-link:focus { 
  left: 0; 
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19, 7, 22, .92);
  border-bottom: 3px solid rgba(255, 211, 55, .9);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: -.04em;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  color: #fff;
  text-shadow: 3px 3px 0 #000, 5px 5px 0 var(--hotpink);
}

.brand span {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  border: 3px solid var(--yellow);
  background: #261127;
  color: #fff;
  border-radius: 999px;
  padding: .65rem .85rem;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 0 #000;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  display: inline-block;
  text-decoration: none;
  color: #fff8e8;
  font-weight: 900;
  font-size: .92rem;
  padding: .55rem .75rem;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #160714;
  background: var(--yellow);
  outline: none;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.3rem, 4vw, 3.5rem) 1rem 2rem;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,79,163,.20), rgba(25,183,255,.12)),
    rgba(255,255,255,.06);
  border: 4px solid rgba(255, 211, 55, .95);
  border-radius: 28px;
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 25px 70px var(--shadow);
}

.kicker {
  display: inline-block;
  background: var(--yellow);
  color: #170914;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .65rem;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #000;
}

h1, h2, h3 {
  line-height: .98;
  margin: 0 0 1rem;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #000, 9px 9px 0 var(--hotpink);
}

h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #000;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.hero p {
  max-width: 62ch;
  color: #fff4df;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 1000;
  color: #150713;
  background: var(--yellow);
  border: 3px solid #fff;
  box-shadow: 0 5px 0 #000;
}

.button.secondary {
  background: var(--blue);
}

.hero-image {
  overflow: hidden;
  border-radius: 22px;
  border: 4px solid #fff;
  background: #000;
  transform: rotate(1deg);
  box-shadow: 0 18px 40px var(--shadow);
}

.hero-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.section-lead {
  color: #ffeecd;
  max-width: 70ch;
  font-size: 1.1rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--panel);
  color: var(--ink);
  border: 4px solid #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 0 #000, 0 25px 45px var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #2b1228;
}

.card-body {
  padding: 1rem;
}

.card h3 {
  color: #180616;
  margin-bottom: .45rem;
}

.card p {
  margin: 0;
  color: #312333;
  font-weight: 650;
}

.strip {
  background: linear-gradient(90deg, var(--hotpink), var(--orange), var(--yellow));
  color: #120713;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  padding: 1rem;
  text-align: center;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  text-shadow: 1px 1px 0 rgba(255,255,255,.55);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.episode-card {
  position: relative;
}

.episode-card .badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: #000;
  color: var(--yellow);
  border: 3px solid #fff;
  border-radius: 999px;
  padding: .25rem .55rem;
  font-weight: 1000;
  z-index: 2;
}

.gallery-list {
  columns: 2;
  column-gap: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 3px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  color: #fff6df;
}

.gallery-list li {
  break-inside: avoid;
  margin: 0 0 .3rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86rem;
}

.site-footer {
  margin-top: 2rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,211,55,.18), transparent 20rem),
    #09050b;
  border-top: 5px solid var(--yellow);
  color: #fff4df;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: center;
}

.sponsor {
  background: rgba(255,255,255,.08);
  border: 3px solid rgba(255,211,55,.75);
  border-radius: 22px;
  padding: 1rem;
}

.sponsor-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: .95;
  font-weight: 1000;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 3px 3px 0 #000;
  margin: 0 0 .5rem;
}

.sponsor p {
  margin: .4rem 0;
}

.abc-logo {
  display: inline-block;
  background: #fff;
  padding: .75rem;
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: 0 6px 0 #000;
  max-width: 220px;
}

.abc-logo img {
  width: 180px;
}

.footer-small {
  color: #ffdca7;
  font-size: .92rem;
}

@media (max-width: 860px) {
  .nav-toggle { 
    display: inline-flex; 
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .45rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    background: #130716;
    border: 3px solid var(--yellow);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
  }

  .nav-menu.is-open { 
    display: flex; 
  }

  .nav-menu a {
    width: 100%;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
  }

  .hero-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .episode-grid {
    grid-template-columns: 1fr;
  }

  .gallery-list {
    columns: 1;
  }

  h1 {
    text-shadow: 4px 4px 0 #000, 7px 7px 0 var(--hotpink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { 
    scroll-behavior: auto; 
  }
}
