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

:root {
  --glass: rgba(10, 10, 20, 0.5);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.13);
  --white: #f0f0f0;
  --white-dim: rgba(240, 240, 240, 0.48);
  --discord: #5865F2;
  --radius: 18px;
  --t: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--white);
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background: url('anime_wall.webp') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.08);
  filter: brightness(0.38) saturate(0.5) blur(4px);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(4, 4, 14, 0.88) 0%,
    rgba(4, 4, 14, 0.62) 50%,
    rgba(4, 4, 14, 0.92) 100%
  );
  z-index: -1;
}

.nav {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 0.6rem 0.55rem 1.15rem;
  background: rgba(10, 10, 25, 0.6);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  width: max-content;
  max-width: calc(100vw - 2.5rem);
}

.nav-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dot { opacity: 0.3; }

.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.95rem;
  border-radius: 100px;
  background: var(--discord);
  border: none;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all var(--t);
  box-shadow: 0 2px 14px rgba(88,101,242,0.35);
  line-height: 1;
}

.nav-discord-icon {
  display: block;
  flex-shrink: 0;
}

.nav-discord:hover {
  background: #6672f5;
  box-shadow: 0 4px 22px rgba(88,101,242,0.55);
  transform: translateY(-1px);
}

.page {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.85rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--white-dim);
  backdrop-filter: blur(10px);
}

.pill-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: glow 2s infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.name {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(170deg, #fff 40%, rgba(255,255,255,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: lowercase;
}

.role {
  font-size: clamp(0.78rem, 1.6vw, 0.9rem);
  color: var(--white-dim);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  padding: 0.7rem;
  font-size: 0.7rem;
  color: rgba(240,240,240,0.2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

::-webkit-scrollbar { display: none; }

@media (max-width: 640px) {
  .name { font-size: clamp(2.5rem, 15vw, 4rem); }
}
