:root {
  --pink-50: #fff8fc;
  --pink-100: #ffeaf4;
  --pink-200: #ffd0e6;
  --pink-300: #f8a9ce;
  --pink-500: #ec4f9a;
  --purple-100: #f1e9ff;
  --purple-300: #c9a7f5;
  --purple-500: #8b5fc7;
  --purple-700: #4b315d;
  --ink: #38283f;
  --muted: #7d687f;
  --white: #fff;
  --line: rgba(125, 82, 132, 0.13);
  --shadow: 0 24px 70px rgba(121, 62, 120, 0.16);
  --soft-shadow: 0 12px 32px rgba(126, 70, 119, 0.11);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .95), transparent 25%),
    radial-gradient(circle at 95% 12%, rgba(236, 79, 154, .18), transparent 25%),
    linear-gradient(145deg, #fff8fc 0%, #ffeaf5 48%, #efe8ff 100%);
  overflow-x: hidden;
}

a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.page-glow {
  position: fixed;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(35px);
  opacity: .38;
  pointer-events: none;
}
.glow-one { top: -170px; right: -140px; background: #ff8fc5; }
.glow-two { bottom: -180px; left: -160px; background: #b79cff; }
.floating-marks {
  position: fixed;
  z-index: -1;
  inset: 9% auto auto 2%;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 13px;
  transform: rotate(-11deg);
  pointer-events: none;
}

.site-header,
main,
footer {
  width: min(100% - 28px, 760px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 22px;
  background: rgba(255, 252, 254, .82);
  box-shadow: 0 10px 30px rgba(100, 51, 101, .09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font: italic 700 24px Georgia, serif;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  box-shadow: 0 8px 20px rgba(203, 76, 157, .28);
}
.brand-name { font-size: 19px; }
.site-header nav { display: flex; gap: 17px; }
.site-header nav a {
  color: #715a78;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header nav a:hover { color: var(--pink-500); }

main { padding: 18px 0 0; }
.hero-shell,
.content-card {
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 254, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.hero-shell { overflow: hidden; }

.gamer-photo {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background: linear-gradient(145deg, #d99bde, #f5a8ca);
}
.gamer-photo img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 34%;
}
.gamer-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;
  background: linear-gradient(to bottom, rgba(255,252,254,0), rgba(255,252,254,.78) 55%, rgba(255,252,254,1) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  padding: 10px 42px 28px;
  text-align: center;
}
.eyebrow,
.mini-label,
.game-kicker,
.pole-kicker,
.post-meta > span {
  color: #b24683;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-copy h1,
.section-heading h2,
.preference-card h1,
.email-hero h1 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.hero-copy h1 { font-size: clamp(39px, 7vw, 64px); line-height: .98; }
.hero-copy h1 em { color: #df4c96; font-weight: 500; }
.tagline { margin: 18px 0 0; font-weight: 800; }
.tagline span { color: var(--pink-500); padding: 0 5px; }
.intro { max-width: 610px; margin: 17px auto 0; color: var(--muted); line-height: 1.75; font-size: 15px; }
.identity-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
.identity-chips span {
  padding: 8px 12px;
  border: 1px solid rgba(221, 98, 160, .17);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: #6e586f;
  font-size: 12px;
  font-weight: 750;
}

.signup-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  margin: 0 26px 28px;
  padding: 22px;
  color: #fff;
  border-radius: 25px;
  background: linear-gradient(135deg, #ee4f99, #9a68d2);
  box-shadow: 0 18px 38px rgba(183, 72, 158, .26);
}
.signup-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  font-size: 22px;
}
.signup-copy h2 { margin: 3px 0 5px; font: 500 30px Georgia, serif; }
.signup-copy p { margin: 0; line-height: 1.55; opacity: .92; }
.mini-label { color: rgba(255,255,255,.86); }
.signup-form { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.signup-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,.94);
}
.signup-form input:focus { box-shadow: 0 0 0 4px rgba(255,255,255,.22); }
.signup-form button {
  padding: 0 19px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: #49314f;
  font-weight: 800;
}
.signup-note { grid-column: 1 / -1; margin: -3px 0 0; font-size: 11px; opacity: .75; }

.content-card { margin-top: 18px; padding: 27px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.section-heading h2 { font-size: 30px; }
.section-symbol { font-size: 24px; color: var(--pink-500); }

.link-stack { display: grid; gap: 10px; }
.profile-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(100, 53, 101, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.profile-link:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); border-color: rgba(236,79,154,.35); }
.profile-link.featured { border-color: rgba(236,79,154,.22); background: linear-gradient(90deg, rgba(255,244,250,.94), rgba(246,239,255,.92)); }
.link-icon { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 15px; background: linear-gradient(145deg, #ffd0e4, #ead8ff); }
.link-copy strong, .link-copy small { display: block; }
.link-copy strong { font-size: 15px; }
.link-copy small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.link-arrow { color: var(--pink-500); font-weight: 900; }

.game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.game-card { position: relative; min-height: 190px; padding: 23px; overflow: hidden; border-radius: 23px; color: #fff; }
.game-card::after { content:""; position:absolute; width:130px; height:130px; border-radius:50%; background:rgba(255,255,255,.1); right:-35px; top:-35px; }
.game-card.valorant { background: linear-gradient(135deg, #ef5b8e, #c33b70); }
.game-card.wow { background: linear-gradient(135deg, #8b6ce2, #5247b8); }
.game-card h3 { position: relative; z-index: 1; margin: 10px 0 8px; font-size: 24px; }
.game-card p { position: relative; z-index: 1; margin: 0; line-height: 1.5; opacity: .9; font-size: 13px; }
.game-kicker { position: relative; z-index: 1; color: rgba(255,255,255,.8); }
.game-status { position: absolute; left: 23px; bottom: 20px; font-size: 11px; font-weight: 800; }
.game-status i { display:inline-block; width:8px; height:8px; margin-right:6px; border-radius:50%; background:#66e59a; box-shadow:0 0 0 5px rgba(102,229,154,.17); }

.pole-highlight {
  display: grid;
  grid-template-columns: 115px 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(255,244,250,.9), rgba(239,233,255,.85));
}
.pole-visual { position:relative; height:120px; border-radius:20px; background:linear-gradient(145deg,#f8a8d1,#aa79dd); overflow:hidden; }
.pole-visual span { position:absolute; width:4px; height:100%; left:50%; top:0; transform:translateX(-50%); background:rgba(255,255,255,.9); }
.pole-visual b { position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-size:28px; }
.pole-highlight h3 { margin: 7px 0 8px; font-size: 20px; }
.pole-highlight p { margin:0; color:var(--muted); line-height:1.6; }
.progress-line { height:7px; margin:17px 0 8px; overflow:hidden; border-radius:999px; background:rgba(127,84,141,.12); }
.progress-line span { display:block; height:100%; border-radius:999px; background:linear-gradient(90deg,var(--pink-500),var(--purple-500)); }
.pole-highlight small { color:#8a6e8f; }

.diary-grid { display:grid; gap:12px; }
.diary-post { padding:19px; border:1px solid var(--line); border-radius:20px; background:rgba(255,255,255,.72); }
.post-meta { display:flex; align-items:center; justify-content:space-between; gap:15px; }
.heart-button { border:0; padding:7px 10px; border-radius:999px; color:#d94a8f; background:#fff0f7; }
.heart-button.is-hearted { color:#fff; background:#e94f98; }
.diary-post h3 { margin:11px 0 8px; font-size:18px; }
.diary-post p { margin:0; color:var(--muted); line-height:1.65; font-size:14px; }
.diary-post > a { display:inline-block; margin-top:12px; color:#d2458a; text-decoration:none; font-weight:800; font-size:13px; }

footer { padding: 28px 0 40px; text-align:center; color:#836d87; }
footer p { margin:7px 0; font-size:13px; }
footer a { text-underline-offset:3px; }
.footer-paws { color:#d95a9a; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Signup and preference screens */
.preference-page,
.email-preview-page { min-height:100vh; }
.preference-shell,
.email-preview-shell { width:min(100% - 28px, 620px); margin:0 auto; padding:28px 0; }
.back-link { display:inline-block; margin:0 0 14px 7px; color:#705a76; text-decoration:none; font-weight:750; font-size:13px; }
.preference-card,
.email-message { border:1px solid rgba(255,255,255,.9); border-radius:30px; background:rgba(255,252,254,.9); box-shadow:var(--shadow); overflow:hidden; }
.preference-card { padding:34px; text-align:center; }
.preference-mark,
.mail-mark { display:grid; place-items:center; width:72px; height:72px; margin:0 auto 19px; border-radius:23px; color:#fff; background:linear-gradient(135deg,var(--pink-500),var(--purple-500)); box-shadow:0 13px 28px rgba(181,73,160,.25); font-weight:900; font-size:24px; }
.preference-card h1 { font-size:42px; }
.preference-intro { color:var(--muted); line-height:1.7; }
.preference-option { display:grid; grid-template-columns:auto 1fr; gap:13px; margin-top:12px; padding:17px; border:1px solid var(--line); border-radius:19px; background:rgba(255,255,255,.72); text-align:left; cursor:pointer; }
.preference-option input { position:absolute; opacity:0; }
.option-check { display:grid; place-items:center; width:25px; height:25px; border:2px solid #d7a9c5; border-radius:8px; color:#fff; }
.preference-option:has(input:checked) { border-color:rgba(236,79,154,.38); background:#fff4fa; }
.preference-option:has(input:checked) .option-check { border-color:transparent; background:linear-gradient(135deg,var(--pink-500),var(--purple-500)); }
.preference-option strong, .preference-option small { display:block; }
.preference-option small { margin-top:4px; color:var(--muted); line-height:1.45; }
.age-confirm { margin-top:12px; padding:15px; border-radius:16px; color:#6e596f; background:#f7edf8; text-align:left; }
.age-confirm label { display:flex; gap:10px; align-items:flex-start; }
.preference-submit,
.legal-button,
.email-cta { display:inline-flex; align-items:center; justify-content:center; min-height:49px; margin-top:18px; padding:0 20px; border:0; border-radius:16px; color:#fff; background:linear-gradient(135deg,var(--pink-500),var(--purple-500)); text-decoration:none; font-weight:850; box-shadow:0 13px 28px rgba(181,73,160,.2); }
.preference-submit { width:100%; }
.privacy-note { margin:18px 0 0; color:#927d95; font-size:11px; line-height:1.55; }
.success-panel { margin-top:20px; padding:21px; border-radius:20px; background:linear-gradient(135deg,#fff1f8,#f0eaff); }
.success-heart { font-size:32px; color:#df4c96; }
.success-panel h2 { margin:7px 0; }
.success-panel p { color:var(--muted); }
.success-panel a { color:#d2458a; font-weight:800; }
.inbox-steps { display:grid; gap:10px; margin:23px 0; text-align:left; }
.inbox-steps > div { display:grid; grid-template-columns:auto 1fr; align-items:center; gap:12px; padding:13px; border-radius:16px; background:#fff7fb; }
.inbox-steps > div > span { display:grid; place-items:center; width:32px; height:32px; border-radius:11px; color:#fff; background:linear-gradient(135deg,var(--pink-500),var(--purple-500)); font-weight:900; }
.inbox-steps p { margin:0; }
.inbox-steps small { display:block; margin-top:2px; color:var(--muted); }
.demo-link { width:100%; }
.legal-card { text-align:left; }
.legal-card h1 { text-align:left; }
.legal-card p { color:var(--muted); line-height:1.7; }

/* Email previews */
.email-browser-label { margin:0 0 10px; color:#977e99; text-align:center; font-size:10px; font-weight:900; letter-spacing:.15em; }
.email-header { display:flex; gap:12px; align-items:center; padding:16px 20px; border-bottom:1px solid var(--line); }
.email-avatar { display:grid; place-items:center; width:42px; height:42px; border-radius:14px; color:#fff; background:linear-gradient(135deg,var(--pink-500),var(--purple-500)); font-weight:900; }
.email-header strong, .email-header small { display:block; }
.email-header small { margin-top:2px; color:var(--muted); }
.email-hero { padding:36px 22px; text-align:center; color:#fff; background:linear-gradient(135deg,#ee5ca2,#9f6bd5); }
.email-hero span { font-size:30px; }
.email-hero p { margin:8px 0 0; font-size:11px; letter-spacing:.14em; font-weight:900; }
.email-hero h1 { margin:8px 0 0; font-size:42px; }
.private-email-hero { background:linear-gradient(135deg,#ad3976,#563669); }
.email-body { padding:25px; color:#5d4d61; line-height:1.7; }
.email-cta { width:100%; margin:12px 0; }
.private-cta { background:linear-gradient(135deg,#c93e86,#633c75); }
.email-small { color:#927f96; font-size:11px; }
.email-signoff { margin-top:24px; }
.email-footer { padding:15px; color:#968198; background:#fff6fa; text-align:center; font-size:11px; }

@media (max-width: 640px) {
  .site-header, main, footer { width:min(100% - 16px, 760px); }
  .site-header { top:6px; margin-top:8px; padding:9px 11px; border-radius:18px; }
  .brand-mark { width:35px; height:35px; font-size:21px; }
  .site-header nav { gap:10px; }
  .site-header nav a { font-size:10px; }
  main { padding-top:10px; }
  .hero-shell, .content-card { border-radius:25px; }
  .gamer-photo { min-height:410px; }
  .gamer-photo img { height:445px; object-position:center 30%; }
  .gamer-photo::after { height:135px; }
  .hero-copy { margin-top:-54px; padding:9px 18px 22px; }
  .hero-copy h1 { font-size:42px; }
  .tagline { font-size:13px; }
  .intro { font-size:14px; }
  .signup-card { grid-template-columns:1fr; margin:0 12px 16px; padding:19px; }
  .signup-icon { display:none; }
  .signup-form { grid-column:auto; grid-template-columns:1fr; }
  .signup-form button { min-height:47px; }
  .signup-note { grid-column:auto; }
  .content-card { margin-top:12px; padding:19px; }
  .section-heading h2 { font-size:25px; }
  .game-grid { grid-template-columns:1fr; }
  .game-card { min-height:175px; }
  .pole-highlight { grid-template-columns:78px 1fr; padding:15px; gap:14px; }
  .pole-visual { height:100px; }
  .preference-card { padding:27px 19px; }
  .preference-card h1 { font-size:36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition:none !important; }
}
