:root {
  --red: #ff1e39;
  --black: #060606;
  --magenta: #ff0066;
  --pink: #ff66b3;
  --light-orange: #f1d7ac;
  --off: #faf5f5;
  --radius-lg: 1.5rem;
  --radius-sm: 0.75rem;
  --fw-bold: 600;
  --shadow: 0 12px 40px rgba(0,0,0,0.35);
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 6vw;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,6,6,0.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,0,102,0.3);
}

.home-body .site-header {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.logo-badge {
  background: #000;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-family: "Oswald", sans-serif;
}

.logo-badge span {
  color: var(--magenta);
}

.main-nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.home-body .main-nav a {
  color: #111;
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(255,0,102,0.1);
  color: var(--magenta);
}

/* HERO */
.hero {
  position: relative;
  min-height: 72vh;
  background: radial-gradient(circle at top, #ff0066 0%, #000 55%, #000 100%);
  color: #fff;
  display: grid;
  align-items: center;
  padding: 4.5rem 6vw 6rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: -10% -10%;
  background: radial-gradient(circle at 20% 20%, rgba(241,215,172,0.4), rgba(0,0,0,0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 680px;
  z-index: 2;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f1d7ac;
}

.hero-title {
  font-size: clamp(2.7rem, 4vw, 3.4rem);
  font-family: "Oswald", sans-serif;
  line-height: 1.02;
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 40rem;
  color: #fff;
  opacity: 0.72;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #000;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn-ghost {
  border: 1px solid rgba(241,215,172,0.7);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 500;
}

.hero-marquee {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 24s linear infinite;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FEATURED */
.featured {
  padding: 4rem 6vw 3.5rem;
  background: #fff;
}

.section-heading h2 {
  font-family: "Oswald", sans-serif;
  margin-bottom: 0.3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.story-card {
  background: #111;
  color: #fff;
  padding: 1.5rem 1.4rem;
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,0,102,0.55);
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.story-card .story-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,0,102,0.7);
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.gradient-card {
  background: linear-gradient(160deg, #ff0066 0%, #000 75%);
}

.text-link {
  color: #f1d7ac;
  text-decoration: none;
  font-weight: 600;
}

/* SOCIAL / EMBEDS */
.social-embed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 4rem 6vw;
  background: #111;
  color: #fff;
}

.embed-left, .embed-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(241,215,172,0.2);
  border-radius: 1.2rem;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}

/* AUTHOR SPOTLIGHT PREVIEW */
.author-spotlight {
  padding: 4rem 6vw 5rem;
  background: #fff;
}

.author-card {
  background: #000;
  color: #fff;
  padding: 2rem 1.6rem;
  border-radius: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(255,0,102,0.4);
}

.author-badge {
  background: radial-gradient(circle, #ff0066 0%, #000 60%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
}

.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 2.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  margin: 0.7rem 0 0.9rem;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* ARTICLE PAGE */
.article-body {
  background: radial-gradient(circle at top, rgba(255,0,102,0.35) 0%, #0a0a0a 48%, #000 100%);
  color: #fff;
}

.article-wrap {
  max-width: 950px;
  margin: 3.5rem auto 3rem;
  padding: 0 2.5rem 4rem;
  text-align: left; /* text left aligned */
}

/* Keep text left aligned */
.article-wrap p,
.article-wrap h1,
.article-wrap h2,
.article-wrap h3 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Center images, figures, iframes (videos) */
.article-wrap figure,
.article-wrap img,
.article-wrap iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Figure captions centered under media */
.article-wrap figcaption,
.media-caption {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(241,215,172,0.85);
  margin-top: 0.5rem;
}

/* Add spacing between media and text */
.article-figure,
.article-media {
  margin: 2.5rem auto;
}




.article-hero-block {
  position: relative;
  padding: 4.5rem 1rem 3.5rem;
  border-radius: 1.6rem;
  background: linear-gradient(140deg, rgba(255,0,102,0.15), rgba(0,0,0,0.7));
  border: 1px solid rgba(241,215,172,0.25);
  overflow: hidden;
}

.article-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,102,0.6), rgba(0,0,0,0));
  top: -120px;
  right: -100px;
  filter: blur(18px);
  opacity: 0.7;
}

.article-title {
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  font-family: "Oswald", sans-serif;
  z-index: 2;
  position: relative;
}

.article-meta {
  margin-top: 1.3rem;
  color: rgba(241,215,172,0.75);
  font-size: 0.95rem;
}

.article-media {
  margin: 2.6rem auto 2rem;
  max-width: 920px;
  text-align: center;
}

.video-embed {
  width: 100%;
  min-height: 420px;
  border-radius: 1.4rem;
  box-shadow: 0 14px 26px rgba(0,0,0,0.35);
  border: 1px solid rgba(241,215,172,0.15);
}

@media (max-width: 720px) {
  .video-embed {
    min-height: 210px;
  }
}

.media-caption {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(241,215,172,0.85);
  margin-top: 0.6rem;
}

.article-h1,
.article-h2,
.article-h3 {
  margin-top: 2.4rem;
  margin-bottom: 1rem;
}

.article-h1 {
  font-size: 2.1rem;
}

.article-h2 {
  font-size: 1.6rem;
}

.article-h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-p {
  max-width: 760px;
  margin: 0.5rem auto;
  color: rgba(255,255,255,0.85);
}

.article-figure {
  margin: 2.1rem auto;
  max-width: 920px;
}

.article-figure img,
.article-inline-img {
  width: min(100%, 920px);
  border-radius: 1.2rem;
  border: 1px solid rgba(241,215,172,0.18);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.article-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(241,215,172,0.85);
}

.author-spotlight-full {
  margin-top: 4rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(241,215,172,0.1);
  border-radius: 1.4rem;
  padding: 1.8rem 1.2rem;
}

.article-footer {
  border-top: 1px solid rgba(241,215,172,0.14);
}

.article-wrap p.media-caption,
.article-media .media-caption {
  display: block;
  text-align: center !important;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(241,215,172,0.85);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .author-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
