@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

.lc-root {
  --void: #0a0908;
  --panel: #171313;
  --panel-2: #1e1919;
  --line: #322a29;
  --red: #c81e1e;
  --red-bright: #ff3b30;
  --red-dim: #5c1414;
  --text: #ece6e2;
  --text-muted: #9a8f8b;
  --text-faint: #665c59;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(rgba(10, 9, 8, 0.82), rgba(10, 9, 8, 0.82)), url("img/backgroung.png") center center / cover no-repeat fixed;
  background-color: var(--void);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--red-dim); color: #fff; }

button { font: inherit; }
a { color: inherit; }
input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 2px;
}

.lc-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}

.lc-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(200,30,30,0.18) 0%, rgba(200,30,30,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.lc-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lc-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(160deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  padding: 36px 30px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 30, 30, 0.08);
}

.lc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--red-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.lc-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.lc-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 28px 0;
}
.lc-intro strong { color: var(--red-bright); }

.lc-section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 18px 0;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.lc-step {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.lc-step:last-of-type { margin-bottom: 28px; }

.lc-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 30, 30, 0.1);
  border: 1px solid var(--red-dim);
  color: var(--red-bright);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.lc-step-body { flex: 1; min-width: 0; }
.lc-step-body h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 3px 0 8px 0;
}
.lc-step-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 12px 0;
}

.lc-qr-wrap {
  width: 176px;
  max-width: 100%;
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
}
.lc-qr-wrap img { display: block; width: 100%; height: auto; }

.lc-hint {
  font-size: 12px !important;
  color: var(--text-faint) !important;
}

.lc-pix-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: var(--void);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease;
}
.lc-pix-key:hover { border-color: var(--red-dim); }
.lc-pix-key.copied { border-color: #2b6a3d; }

.lc-pix-key-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lc-pix-key-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.lc-pix-key-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lc-pix-key-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
}
.lc-pix-key.copied .lc-pix-key-icon { color: #5fbf7d; }

.lc-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #5865f2;
  color: #fff;
  border: none;
  padding: 11px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(88, 101, 242, 0.3);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.lc-discord-btn:hover { background: #4752c4; box-shadow: 0 4px 18px rgba(88, 101, 242, 0.4); }
.lc-discord-btn:active { transform: translateY(1px); }

.lc-back-btn {
  display: block;
  text-align: center;
  background: none;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  margin-top: 4px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lc-back-btn:hover { border-color: var(--red-dim); color: var(--text); }

@media (max-width: 420px) {
  .lc-card { padding: 30px 20px 26px; }
}
