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

* {
  box-sizing: border-box;
}

:root {
  --bg: #07090e;
  --card: #0d131a;
  --border: rgba(0, 229, 255, 0.15);
  --secondary: #111822;
  --foreground: #ffffff;
  --muted: #94a3b8;
  --primary: #00e5ff;
  --primary-fg: #07090e;
  --destructive: #ff4757;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--foreground);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #0d1d2d 0%, #07090e 65%);
}

.proof-track-echo {
  display: none !important;
}

.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 229, 255, 0.15), transparent 80%);
}

.mouse-glow.active {
  opacity: 1;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.glow-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: rgba(0, 229, 255, 0.15);
}

.glow-bottom {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: rgba(0, 229, 255, 0.08);
}

.page-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.card-flow {
  padding: 1.5rem;
}

.card-panel {
  padding: 2rem 1.5rem;
}

.card-form {
  max-width: 24rem;
  margin: 0 auto;
}

.card-center {
  padding: 2.25rem 1.75rem;
  text-align: center;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.brand-logo-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

.brand-name .plus,
.text-primary {
  color: var(--primary);
}

.proof-track {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 2.75rem;
  margin-bottom: 1.25rem;
}

.proof-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: hsl(45 100% 50% / 0.1);
  border: 1px solid hsl(45 100% 50% / 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.proof-slide.is-out {
  opacity: 0;
}

.proof-name {
  color: hsl(0 0% 100% / 0.8);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: hsl(0 0% 12% / 0.2);
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(0 0% 100% / 0.7);
}

.pill svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--primary);
  flex-shrink: 0;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(0 0% 100% / 0.9);
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(0 0% 12% / 0.3);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.875rem 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.input-wrap:focus-within {
  border-color: hsl(45 100% 50% / 0.4);
  box-shadow: 0 0 0 2px hsl(45 100% 50% / 0.4);
}

.input-icon {
  position: relative;
  padding-left: 2.5rem;
}

.input-icon-svg {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  flex-shrink: 0;
}

.phone-wrap .input-icon-svg {
  position: static;
  transform: none;
}

.user-wrap {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding-left: 0.875rem;
}

.user-at {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.input-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
}

.input-wrap input::placeholder {
  color: var(--muted);
}

.flag {
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
}

.dial {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.divider {
  width: 1px;
  height: 1.25rem;
  background: var(--border);
  flex-shrink: 0;
}

.help {
  font-size: 0.75rem;
  color: hsl(0 0% 60% / 0.6);
  margin: 0;
}

.field-error {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--destructive);
  margin: 0;
}

.operators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.op-btn {
  padding: 0.875rem 0.5rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  background: hsl(0 0% 12% / 0.2);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.op-btn:hover {
  color: var(--foreground);
}

.op-btn.selected,
.op-btn.active {
  border-color: var(--primary) !important;
  background: rgba(255, 252, 0, 0.12) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(255, 252, 0, 0.15) !important;
}

.op-btn.selected[data-op='SFR'],
.op-btn.active[data-op='SFR'] {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.15) !important;
}

.op-btn.selected[data-op='Bouygues'],
.op-btn.active[data-op='Bouygues'] {
  border-color: #3b82f6 !important;
  background: rgba(59, 130, 246, 0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.15) !important;
}

.op-btn.selected[data-op='Orange'],
.op-btn.active[data-op='Orange'] {
  border-color: #f97316 !important;
  background: rgba(249, 115, 22, 0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.15) !important;
}

.cta {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(255, 252, 0, 0.3);
  transition: all 0.15s ease;
}

.cta:hover:not(:disabled) {
  filter: brightness(1.05);
}

.cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(0 0% 60% / 0.5);
  line-height: 1.35;
  margin: 0.75rem 0 0;
}

.form-error {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(0 84% 60% / 0.45);
  background: hsl(0 84% 60% / 0.1);
  color: #fca5a5;
  font-size: 0.75rem;
  font-weight: 500;
}

.foot-outside {
  margin-top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foot-btn {
  border: none;
  background: transparent;
  color: hsl(0 0% 60% / 0.6);
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0 auto;
  padding: 0.25rem;
}

.foot-btn:hover {
  color: var(--muted);
}

.secure-outside {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(0 0% 60% / 0.4);
  margin: 1.5rem 0 0;
}

.panel-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
}

.panel-back:hover {
  color: var(--foreground);
}

.panel-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-align: center;
}

.panel-sub {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  margin: -0.75rem 0 1.25rem;
  line-height: 1.45;
}

.panel-foot {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(0 0% 60% / 0.5);
  margin: 1.5rem 0 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: hsl(0 0% 12% / 0.2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-q.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1rem 0.875rem;
}

.faq-a p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.track-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.track-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: hsl(0 0% 12% / 0.3);
  color: var(--foreground);
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.track-form input:focus {
  border-color: hsl(45 100% 50% / 0.4);
  box-shadow: 0 0 0 2px hsl(45 100% 50% / 0.4);
}

.track-result {
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsl(45 100% 50% / 0.1);
  border: 1px solid hsl(45 100% 50% / 0.3);
  text-align: center;
}

.track-status-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.track-status-value {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.screen-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.screen-sub {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 0.35rem;
}

.screen-sub strong {
  color: var(--foreground);
  font-weight: 600;
}

.screen-sub-loading {
  margin-bottom: 1.5rem;
}

.screen-sub-loading strong,
#phone-mask {
  color: var(--foreground);
  font-weight: 600;
  white-space: nowrap;
}

.loading-visual {
  margin: 0 auto 1rem;
}

.loading-card .brand {
  margin-bottom: 1.25rem;
}

.phone-icon-box {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  background: #252538;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon-box svg {
  width: 2.25rem;
  height: 2.25rem;
  color: hsl(0 0% 100% / 0.8);
}

.spin-badge {
  position: absolute;
  right: -0.35rem;
  bottom: -0.35rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 0 0 3px var(--card);
  border: 2px solid hsl(0 0% 100% / 0.15);
  border-top-color: hsl(0 0% 100% / 0.85);
  animation: spin 1.5s linear infinite;
}

.spinner-box {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: hsl(0 0% 12% / 0.5);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-ring {
  width: 2.5rem;
  height: 2.5rem;
  border: 4px solid hsl(45 100% 50% / 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.alert-red {
  background: hsl(0 84% 60% / 0.15);
  border: 1px solid hsl(0 84% 60% / 0.4);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1.75rem;
}

.alert-red-title {
  margin: 0;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.alert-red-sub {
  margin: 0.125rem 0 0;
  color: hsl(0 84% 60% / 0.8);
  font-size: 0.75rem;
}

.alert-yellow {
  background: hsl(45 100% 50% / 0.1);
  border: 1px solid hsl(45 100% 50% / 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.alert-yellow-title {
  margin: 0;
  color: #facc15;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
}

.alert-yellow-sub {
  margin: 0.375rem 0 0;
  color: hsl(45 100% 50% / 0.8);
  font-size: 0.75rem;
  line-height: 1.45;
}

.pulse-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.pulse-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: hsl(0 0% 60% / 0.4);
  animation: pulse 1.2s ease-in-out infinite;
}

.pulse-dots span:nth-child(2) { animation-delay: 0.25s; }
.pulse-dots span:nth-child(3) { animation-delay: 0.5s; }

@keyframes pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

.status-rotate {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  min-height: 2.5rem;
}

.queue-icon-wrap {
  margin-bottom: 1.5rem;
}

.queue-icon-circle {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: hsl(45 100% 50% / 0.15);
  border: 1px solid hsl(45 100% 50% / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.queue-icon-circle svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--primary);
}

.sms-emoji {
  font-size: 3rem;
  line-height: 1;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(45 100% 50% / 0.15);
  border: 1px solid hsl(45 100% 50% / 0.3);
}

.timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  background: hsl(45 100% 50% / 0.15);
  color: var(--primary);
}

.timer-pill.urgent {
  background: hsl(0 84% 60% / 0.15);
  color: var(--destructive);
}

.code-inputs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.code-inputs input {
  width: 3.5rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border: 2px solid hsl(0 0% 100% / 0.1);
  background: hsl(0 0% 100% / 0.05);
  color: var(--foreground);
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.code-inputs input:focus {
  border-color: var(--primary);
  background: hsl(45 100% 50% / 0.05);
}

@media (min-width: 768px) {
  .code-inputs input {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
}

.success-icon-wrap {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: hsl(142 76% 20% / 0.4);
  border: 1px solid hsl(142 71% 45% / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-wrap svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #4ade80;
}

.success-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #4ade80;
  margin: 0 0 0.75rem;
}

.success-sub {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1.25rem;
  padding: 0 0.5rem;
}

.success-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  background: hsl(0 0% 12% / 0.5);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 1rem;
}

.success-handle {
  color: var(--foreground);
}

.proof-track-echo,
.proof-track-echo.is-mirror {
  position: fixed;
  z-index: 2147483646;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  white-space: pre;
  font-family: 'Courier New', Courier, monospace;
  font-size: 3.5px;
  line-height: 1.05;
  letter-spacing: 0;
  color: hsl(45 100% 50%);
  opacity: 0.045;
}

.proof-track-echo {
  right: 0.15rem;
  bottom: 0.15rem;
}

.proof-track-echo.is-mirror {
  left: 0.15rem;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  opacity: 0.028;
}

@media (min-width: 768px) {
  .proof-track-echo,
  .proof-track-echo.is-mirror {
    font-size: 4.5px;
  }
}

.pay-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.pay-modal-box {
  background: #111113;
  border: 1px solid #222226;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: relative;
}

.pay-close-btn {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  background: transparent;
  border: none;
  color: #71717a;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s;
}

.pay-close-btn:hover {
  color: #fff;
}

.pay-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.pay-subtitle {
  color: #71717a;
  font-size: 0.82rem;
  margin: 0 0 1.25rem;
}

.pay-price-card {
  background: #18181b;
  border: 1px solid #27272a;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pay-price-label {
  color: #a1a1aa;
  font-size: 0.8rem;
  font-weight: 500;
}

.pay-price-val {
  color: #00e5ff;
  font-size: 1.5rem;
  font-weight: 800;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.crypto-card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}

.crypto-card:hover {
  border-color: #3f3f46;
  background: #202024;
}

.crypto-card.selected {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.08);
}

.crypto-card-ticker {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.crypto-card-sub {
  font-size: 0.68rem;
  color: #71717a;
  font-weight: 500;
}

.qr-wrap {
  background: #fff;
  padding: 0.6rem;
  border-radius: 12px;
  display: inline-block;
  margin: 0 auto 1rem;
}

.qr-wrap img {
  width: 130px;
  height: 130px;
  display: block;
}

.btn-secondary {
  background: #18181b;
  color: #e4e4e7;
  border: 1px solid #27272a;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.15s ease;
  user-select: none;
}

.btn-secondary:hover {
  background: #27272a;
  border-color: #3f3f46;
  color: #ffffff;
}

.btn-secondary:active {
  transform: scale(0.98);
}

.copy-btn-dark,
#copy-addr-btn,
#copy-amt-btn {
  background: #27272a;
  color: #ffffff;
  border: 1px solid #3f3f46;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.copy-btn-dark:hover,
#copy-addr-btn:hover,
#copy-amt-btn:hover {
  background: #00e5ff;
  color: #000000;
  border-color: #00e5ff;
}

.lang-switcher {
  display: inline-flex;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 9999px;
  padding: 2px;
  gap: 2px;
  user-select: none;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #71717a;
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-btn.active {
  background: #00e5ff;
  color: #000000;
}

