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

body {
  min-height: 100vh;
  background: linear-gradient(to top, #0d0d0d 0%, #1a0000 60%, #2a0000 100%);
  font-family: 'Segoe UI', system-ui, sans-serif;
  overflow-x: hidden;
  color: #fff;
}

#curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 100;
  transform-origin: top center;
  animation: curtainDrop 1.1s cubic-bezier(0.77, 0, 0.18, 1) 0.2s forwards;
}

@keyframes curtainDrop {
  0%   { transform: scaleY(1); opacity: 1; }
  70%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; pointer-events: none; }
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px 80px;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}

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

.site-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  background: linear-gradient(135deg, #fff 30%, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.avatar-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: #1a0000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

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

.divider-section {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(180, 0, 0, 0.25);
}

.slogan {
  font-size: 13px;
  color: #664444;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  border-radius: 12px;
  background: rgba(30, 0, 0, 0.7);
  border: 1px solid rgba(180, 0, 0, 0.15);
  color: #e8e8e8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.18s, border-color 0.18s, transform 0.12s;
  position: relative;
  overflow: hidden;
}

.link-btn:hover {
  background: rgba(50, 0, 0, 0.85);
  border-color: rgba(180, 0, 0, 0.35);
  transform: translateY(-1px);
}

.link-btn:active {
  transform: translateY(0px) scale(0.99);
}

.link-btn .arrow {
  position: absolute;
  right: 18px;
  font-size: 14px;
  color: #553333;
  transition: color 0.18s, right 0.18s;
}

.link-btn:hover .arrow {
  color: #aa4444;
  right: 14px;
}
