:root {
  --bg: #03172f;
  --bg-soft: #082a54;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #c9ddf2;
  --accent: #ffffff;
  --accent-2: #2ea8ff;
  --accent-3: #dff4ff;
  --border: rgba(216, 235, 235, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 168, 255, 0.22), transparent 36rem),
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, 0.15), transparent 34rem),
    linear-gradient(180deg, #03172f 0%, #06284f 48%, #020b18 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}


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

.protected-media,
.protected-media * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.protected-media img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.media-guard {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
}


.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(3, 23, 47, 0.78);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
}

.brand-logo,
.custom-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
}
.menu a:hover { color: var(--text); }

.language-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}
.lang-btn {
  border: 0;
  cursor: pointer;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}
.lang-btn[aria-pressed="true"] {
  color: #03172f;
  background: linear-gradient(135deg, #ffffff, var(--accent-2));
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,0.90), rgba(5,6,7,0.46) 44%, rgba(5,6,7,0.86)),
    linear-gradient(180deg, rgba(5,6,7,0.12), rgba(5,6,7,0.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(90deg, rgba(46,168,255,0.10) 0 18px, transparent 18px 52px);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 52rem;
  height: 52rem;
  right: -10rem;
  top: 5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 44%, rgba(255, 255, 255, 0.38), transparent 48%),
    radial-gradient(circle at 62% 34%, rgba(46, 168, 255, 0.24), transparent 56%);
  filter: blur(10px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
  padding: 90px 0;
}
.eyebrow,
.section-kicker {
  color: var(--accent-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  font-size: clamp(4.2rem, 12vw, 9rem);
  line-height: 0.86;
  margin-bottom: 22px;
  letter-spacing: -0.08em;
}
h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.tagline {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.1;
  max-width: 780px;
  color: #fff;
  font-weight: 800;
}
.intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-actions,
.age-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border);
  font-weight: 900;
  cursor: pointer;
}
.button.primary {
  color: #03172f;
  border: 0;
  background: linear-gradient(135deg, #ffffff, var(--accent-2));
  box-shadow: 0 14px 42px rgba(255, 255, 255, 0.30), 0 0 24px rgba(46, 168, 255, 0.10);
}
.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}
.button:hover,
.social-card:hover { transform: translateY(-2px); }

.profile-card {
  justify-self: end;
  width: min(100%, 420px);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.045)),
    linear-gradient(135deg, rgba(46,168,255,.10), rgba(255,255,255,.11));
  box-shadow: var(--shadow);
}

.profile-image-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: rgba(0, 0, 0, 0.28);
  background-size: cover;
  background-position: center top;
}
.profile-image-wrap::after {
  content: "© pup_tails_bln";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  pointer-events: none;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.profile-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-top: 16px;
  font-weight: 700;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 7px rgba(46, 168, 255, 0.16);
}

.section {
  padding: 92px 0;
}
.section.dark {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section-inner.narrow { max-width: 820px; }
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.content-block {
  color: var(--muted);
  font-size: 1.12rem;
}
.content-block h1,
.content-block h2,
.content-block h3 { color: var(--text); }
.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-heading p:not(.section-kicker) { color: var(--muted); }

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.social-card {
  min-height: 170px;
  padding: 22px;
  border-radius: 28px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.social-card:hover {
  border-color: rgba(46, 168, 255, 0.68);
  background: var(--panel-strong);
}
.social-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, var(--accent-2));
  color: #03172f;
  font-weight: 1000;
  font-size: 1.3rem;
}

.social-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.social-icon .brand-icon-romeo,
.social-icon .brand-icon-vrchat {
  width: 36px;
  height: 36px;
}
.brand-icon-fallback {
  font-size: 1.3rem;
}

.social-card strong { display: block; font-size: 1.25rem; }
.social-card small { display: block; color: var(--muted); margin-top: 4px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--panel);
  background-size: cover;
  background-position: center top;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 46px rgba(0,0,0,.28);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.46));
  pointer-events: none;
}
.gallery-item::after {
  content: "© pup_tails_bln";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255,255,255,.76);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.placeholder img { object-fit: cover; }

.contact {
  text-align: center;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-note { max-width: 620px; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 23, 47, 0.88);
  backdrop-filter: blur(18px);
}
.age-gate[hidden] { display: none; }
.age-card {
  width: min(100%, 520px);
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 19, 24, .98), rgba(3, 23, 47, .98));
  box-shadow: var(--shadow);
}
.age-card p { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }



.hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #dff4ff 38%, var(--accent-2) 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 48px rgba(0,0,0,.34);
}
.tagline strong,
.intro strong { color: var(--accent-2); }
.button,
.social-card { will-change: transform; }
.protection-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner,
  .two-col {
    grid-template-columns: 1fr;
  }
  .profile-card { justify-self: start; }
  .link-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 68px;
  }
  .menu { display: none; }
  .hero-inner { padding: 64px 0; gap: 32px; }
  .section { padding: 68px 0; }
  .link-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner { display: block; }
}


/* Tails v1.5.0: Hero spacing + slightly smaller title
   Goal: extra spacing between title and tagline. */
.hero h1 {
  font-size: clamp(3.7rem, 10vw, 7.4rem);
  line-height: 1.12;
  margin-bottom: 68px;
  letter-spacing: -0.07em;
}

.hero .tagline {
  margin-top: 0;
  padding-top: 0;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 6.2rem);
    line-height: 1.1;
    margin-bottom: 52px;
  }
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
    line-height: 1.08;
    margin-bottom: 44px;
  }
}
