@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --gold: #f5c842;
  --gold-light: #ffe97a;
  --magenta: #e0007f;
  --magenta-glow: #ff3fa4;
  --purple: #6a0dad;
  --purple-dark: #3a006f;
  --deep: #0e0015;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(245,200,66,0.18);
  --text: #f7f0ff;
  --muted: #c9b8e8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── STARFIELD ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 80%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 35%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 85%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 48% 72%, rgba(245,200,66,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 80% 10%, rgba(224,0,127,0.25) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  background: url('banner.png') center/cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(106,13,173,0.35) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(14,0,21,0.3) 0%, rgba(14,0,21,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: fadeUp 1s ease both;
}

.hero-logo {
  width: clamp(90px, 20vw, 160px);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,200,66,0.5), 0 0 80px rgba(224,0,127,0.3);
  animation: logoFloat 4s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--magenta-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.hero h1 em {
  font-style: italic;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--muted);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-tagline strong {
  color: var(--gold-light);
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary.gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e6a800 100%);
  color: #1a0030;
  box-shadow: 0 4px 24px rgba(245,200,66,0.45);
}

.btn-primary.outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(245,200,66,0.15);
}

.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 36px rgba(245,200,66,0.6); }

/* ── SECTION COMMON ── */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta-glow);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ── ABOUT ── */
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.passion-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.passion-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s;
}

.passion-pill:hover { transform: translateY(-2px); border-color: var(--gold); }
.passion-pill span { font-size: 1.2rem; }

/* ── MANIFESTO ── */
.manifesto-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.manifesto-card {
  position: relative;
  padding: 3.5rem 3rem 3rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245,200,66,0.06) 0%, rgba(224,0,127,0.06) 100%);
  border-left: 4px solid var(--gold);
  border-top: 1px solid rgba(245,200,66,0.2);
  border-right: 1px solid rgba(245,200,66,0.08);
  border-bottom: 1px solid rgba(245,200,66,0.08);
  overflow: hidden;
}

.manifesto-quote-mark {
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.manifesto-intro {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta-glow);
  margin-bottom: 0.75rem;
}

.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--magenta-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.manifesto-headline em {
  font-style: italic;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid rgba(245,200,66,0.15);
  padding-left: 1.5rem;
  margin-left: 0.25rem;
}

.manifesto-body p {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
}

.manifesto-body p strong {
  color: var(--gold-light);
  font-weight: 700;
}

.manifesto-body p em {
  color: var(--text);
  font-style: italic;
}

.manifesto-closer {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem) !important;
  color: var(--text) !important;
  font-weight: 700 !important;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .manifesto-card { padding: 2.5rem 1.5rem 2rem; }
  .manifesto-body { padding-left: 1rem; }
}


.divider {
  height: 1px;
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), var(--magenta), transparent);
  opacity: 0.4;
}

/* ── PLATFORMS ── */
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.platform-card {
  flex: 0 0 calc(50% - 0.75rem);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  text-decoration: none;
  color: var(--text);
  backdrop-filter: blur(10px);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}

.platform-card.twitch::before { background: radial-gradient(ellipse at top, rgba(145,71,255,0.2) 0%, transparent 70%); }
.platform-card.youtube::before { background: radial-gradient(ellipse at top, rgba(255,0,0,0.15) 0%, transparent 70%); }
.platform-card.facebook::before { background: radial-gradient(ellipse at top, rgba(24,119,242,0.15) 0%, transparent 70%); }
.platform-card.reddit::before { background: radial-gradient(ellipse at top, rgba(255,69,0,0.15) 0%, transparent 70%); }

.platform-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(245,200,66,0.5); }
.platform-card:hover::before { opacity: 1; }

.platform-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon svg { width: 34px; height: 34px; }

.platform-card.twitch .platform-icon { background: rgba(145,71,255,0.15); }
.platform-card.youtube .platform-icon { background: rgba(255,0,0,0.12); }
.platform-card.facebook .platform-icon { background: rgba(24,119,242,0.12); }
.platform-card.reddit .platform-icon { background: rgba(255,69,0,0.12); }

.platform-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

.platform-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.platform-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.platform-card.twitch .platform-badge { background: rgba(145,71,255,0.2); color: #bf94ff; }
.platform-card.youtube .platform-badge { background: rgba(255,0,0,0.15); color: #ff7070; }
.platform-card.facebook .platform-badge { background: rgba(24,119,242,0.15); color: #70a9ff; }
.platform-card.reddit .platform-badge { background: rgba(255,69,0,0.15); color: #ff8c5a; }

/* ── CAMERA INVITE ── */
.invite-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.invite-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, rgba(106,13,173,0.3) 0%, rgba(224,0,127,0.2) 100%);
  border: 1px solid rgba(245,200,66,0.25);
  backdrop-filter: blur(12px);
}

.invite-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(245,200,66,0.04) 25%, transparent 50%, rgba(224,0,127,0.04) 75%, transparent 100%);
  animation: rotate 12s linear infinite;
  pointer-events: none;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.invite-emoji { font-size: 3rem; margin-bottom: 1rem; display: block; }
.invite-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.invite-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(245,200,66,0.1);
}

.footer-logo { width: 60px; border-radius: 50%; margin-bottom: 1rem; opacity: 0.85; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  color: rgba(201,184,232,0.4);
  font-size: 0.8rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 0.9s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .platforms-grid { gap: 1rem; max-width: 100%; }
  .platform-card { flex: 0 0 calc(50% - 0.5rem); max-width: none; }
  .platform-card { padding: 1.5rem 1rem; }
  .platform-name { font-size: 1rem; }
  .invite-card { padding: 2.5rem 1.25rem; }
  .cta-row { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .platform-card { flex: 0 0 100%; max-width: 100%; }
}