* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: inherit;
}

html, body {
  height: 100%;
  background: #000;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
  cursor: url('cursor-knife.png?v=4') 2 2, auto;
}

#entry-gate {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
}

#entry-gate.hidden {
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
}

#entry-text {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  animation: entry-pulse 1.8s ease-in-out infinite;
}

@keyframes entry-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

#embers {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stage {
  position: relative;
  width: min(700px, 90vw);
  margin: 0 auto;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
}

.reveal.show {
  animation: reveal-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bg-avatar {
  position: fixed;
  right: 0;
  bottom: 0;
  height: 90vh;
  width: auto;
  max-width: 45vw;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  filter: blur(4px);
  z-index: 2;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  padding-bottom: 15vh;
}

#title {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1px;
  min-height: 75px;
}

.subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  min-height: 28px;
}

.subtitle .slash {
  color: #e5342f;
  font-weight: 700;
}

.subtitle .letter {
  color: #e5342f;
  font-weight: 700;
  display: inline-block;
}

.subtitle .letter::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: #fff;
  vertical-align: -0.15em;
  animation: caret-blink 0.8s step-end infinite;
}

@keyframes caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.card {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(380px, 85vw);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 32px;
  backdrop-filter: blur(6px);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
  text-align: left;
}

.name {
  font-size: 19px;
  font-weight: 600;
}

.status {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6b6b6b;
  display: inline-block;
}

.socials {
  display: flex;
  gap: 34px;
  margin-top: 34px;
}

.icon-link svg {
  width: 36px;
  height: 36px;
}

.icon-link {
  color: #fff;
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 36px rgba(255, 255, 255, 0.4));
  transition: opacity 0.2s, filter 0.2s;
  animation: float 2.4s ease-in-out infinite;
}

.icon-link:nth-child(2) { animation-delay: -0.6s; }
.icon-link:nth-child(3) { animation-delay: -1.2s; }
.icon-link:nth-child(4) { animation-delay: -1.8s; }

.icon-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1)) drop-shadow(0 0 28px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 44px rgba(255, 255, 255, 0.55));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.views {
  position: absolute;
  left: 120px;
  top: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
}

#music-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

#music-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

#toast {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
