@font-face {
  font-family: 'Lacquer';
  src: url('fonts/lacquer-regular-webfont.woff2') format('woff2'),
       url('fonts/lacquer-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Lacquer', cursive;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1118;
  color: #fff;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background: url('bg.png') center/cover no-repeat;
  filter: brightness(0.35) saturate(0.7);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.back-link {
  align-self: flex-start;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.back-link:hover { color: #fff; }

.page-title {
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px rgba(197,78,63,0.4);
}

.step {
  width: 100%;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197,78,63,0.3);
  border: 1px solid rgba(197,78,63,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.step-title {
  font-size: 1rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.95);
}

.step-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  padding-left: 44px;
}

.step-body a {
  color: #c54e3f;
  text-decoration: none;
  transition: opacity 0.2s;
}

.step-body a:hover { opacity: 0.7; }

.step-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-body li::before { content: "- "; opacity: 0.5; }

.note {
  width: 100%;
  font-size: 0.85rem;
  opacity: 0.4;
  text-align: center;
  line-height: 1.6;
}

.footer, .help-note, .note {
  color: rgb(142,142,142);
}

.container > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards;
}
.container > *:nth-child(1) { animation-delay: 0.05s; }
.container > *:nth-child(2) { animation-delay: 0.12s; }
.container > *:nth-child(3) { animation-delay: 0.20s; }
.container > *:nth-child(4) { animation-delay: 0.28s; }
.container > *:nth-child(5) { animation-delay: 0.36s; }
.container > *:nth-child(6) { animation-delay: 0.44s; }
.container > *:nth-child(7) { animation-delay: 0.52s; }
.container > *:nth-child(8) { animation-delay: 0.60s; }

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