@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700;800&display=swap");

:root {
  --bg: #0b1410;
  --panel: #111a14;
  --panel-2: #0f1712;
  --ink: #eef8f1;
  --muted: #b2c7ba;
  --green: #00d46a;
  --green-soft: #4dff9a;
  --danger: #ff6b6b;
  --border: rgba(0, 212, 106, 0.22);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  --surface: #f6f7f6;
  --surface-2: #eef2ef;
  --ink-dark: #0f1a14;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 500;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 12% 12%, rgba(0, 212, 106, 0.18), transparent 60%),
    radial-gradient(700px 460px at 85% 5%, rgba(77, 255, 154, 0.1), transparent 55%),
    linear-gradient(180deg, #0a120e 0%, #0c1611 45%, #0b1410 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 64px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(880px 520px at 15% 10%, rgba(0, 213, 106, 0.12), transparent 55%),
    radial-gradient(720px 480px at 95% 5%, rgba(19, 255, 136, 0.08), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(600px 400px at 50% 100%, rgba(0, 213, 106, 0.05), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.bg-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.dollar-float {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 213, 106, 0.15);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  will-change: transform, opacity;
  text-shadow: 0 0 20px rgba(0, 213, 106, 0.3);
}

.dollar-float:nth-child(1) {
  left: 8%;
  top: 20%;
  animation: float-up-slow 20s linear infinite;
  animation-delay: 0s;
}

.dollar-float:nth-child(2) {
  left: 15%;
  top: 60%;
  animation: float-up-slow 24s linear infinite;
  animation-delay: -8s;
  opacity: 0.6;
}

.dollar-float:nth-child(3) {
  right: 12%;
  top: 15%;
  animation: float-up-slow 22s linear infinite;
  animation-delay: -12s;
  font-size: 2.5rem;
  opacity: 0.8;
}

.dollar-float:nth-child(4) {
  right: 8%;
  top: 55%;
  animation: float-up-slow 26s linear infinite;
  animation-delay: -4s;
  font-size: 2.2rem;
}

.dollar-float:nth-child(5) {
  left: 45%;
  top: 70%;
  animation: float-up-slow 25s linear infinite;
  animation-delay: -16s;
  font-size: 2.8rem;
  opacity: 0.5;
}

.dollar-float:nth-child(6) {
  left: 25%;
  top: 10%;
  animation: float-up-slow 23s linear infinite;
  animation-delay: -6s;
  font-size: 2.4rem;
}

.dollar-float:nth-child(7) {
  right: 28%;
  top: 70%;
  animation: float-up-slow 27s linear infinite;
  animation-delay: -14s;
  font-size: 2.6rem;
  opacity: 0.6;
}

.dollar-float:nth-child(8) {
  left: 62%;
  top: 25%;
  animation: float-up-slow 21s linear infinite;
  animation-delay: -10s;
  font-size: 2.3rem;
  opacity: 0.7;
}

@keyframes float-up-slow {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
    transform: translateY(-45vh) translateX(20px) rotate(15deg);
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) translateX(40px) rotate(25deg);
    opacity: 0;
  }
}

.page {
  width: min(620px, 100%);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.page.is-hidden {
  display: none;
}

.hero {
  padding: 32px;
  background: linear-gradient(160deg, rgba(17, 24, 21, 0.96), rgba(13, 19, 16, 0.96));
  border: 1px solid rgba(0, 213, 106, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: float-in 0.7s ease both;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(0, 213, 106, 0.7);
}

.brand {
  font-weight: 600;
  color: var(--ink);
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 213, 106, 0.25);
  color: var(--green-soft);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.hero h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  margin: 0;
  line-height: 1.08;
}

.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.feature {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(9, 13, 11, 0.7);
  border: 1px solid rgba(0, 213, 106, 0.18);
  font-size: 0.9rem;
  color: var(--muted);
}

.feature strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}

.form-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(19, 29, 23, 0.96), rgba(12, 18, 15, 0.96));
  border-radius: 28px;
  border: 1px solid rgba(0, 213, 106, 0.22);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  animation: float-in 0.9s ease both;
}

.cash-card {
  width: min(520px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 0;
  transform: translateZ(0);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.cash-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.cash-header {
  background: linear-gradient(135deg, #0f7f37 0%, #15a34a 55%, #1dcc66 100%);
  padding: 24px 28px 52px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: filter 0.3s ease;
}

.cash-header::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 70%);
  transform: rotate(-3deg);
  opacity: 0.6;
}

.cash-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.cash-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #00d46a;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  letter-spacing: -0.02em;
}

.cash-subtitle {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 90%;
  font-weight: 500;
}

.cash-body {
  padding: 38px 32px 36px;
  display: grid;
  gap: 24px;
  background: var(--surface-2);
}

.cash-body > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-head h2 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.6rem;
}

.form-head p {
  margin: 0;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 213, 106, 0.12);
  border: 1px solid rgba(0, 213, 106, 0.25);
  color: var(--green-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

form > div:first-child {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ink-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.input-group {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

input[type="text"] {
  width: 100%;
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(19, 27, 22, 0.18);
  font-size: 1rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 500;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  background: #ffffff;
  color: var(--ink-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

input[type="text"]::placeholder {
  color: rgba(109, 128, 118, 0.7);
  font-weight: 400;
}

input[type="text"]:focus {
  border-color: rgba(0, 212, 106, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 212, 106, 0.18);
  background: #ffffff;
  transform: translateY(-1px);
}

input[type="text"].is-invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.18);
  animation: shake 0.35s ease;
}

button {
  padding: 14px 44px;
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 61, 0.35);
  background: linear-gradient(135deg, #1ccb66 0%, #14b859 45%, #0ea54f 100%);
  color: #ffffff;
  font-weight: 700;
  font-family: "Manrope", "Segoe UI", sans-serif;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-transform: none;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  min-width: 200px;
  text-align: center;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
  filter: grayscale(0.1);
}

button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(22, 163, 74, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  position: relative;
}

#submit-btn .btn-label {
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: opacity 0.2s ease, width 0.2s ease;
}

#submit-btn .btn-loader {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  opacity: 0;
  position: absolute;
  inset: 0;
  margin: auto;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#submit-btn .btn-loader::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-right-color: rgba(255, 255, 255, 0.8);
  animation: spin 0.75s linear infinite;
}

#submit-btn.is-loading .btn-label {
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

#submit-btn.is-loading .btn-loader {
  opacity: 1;
  transform: scale(1);
}

#submit-btn.is-loading {
  gap: 0;
}

#loading-indicator {
  font-size: 0.9rem;
  color: rgba(27, 35, 30, 0.5);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hint {
  font-size: 0.85rem;
  color: #55615a;
  margin-top: 4px;
}

.status {
  min-height: 0;
  font-size: 0.9rem;
  color: #ff6b6b;
  border-radius: 12px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  font-weight: 500;
}

.status.is-visible {
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.08));
  border: 1px solid rgba(255, 107, 107, 0.35);
  opacity: 1;
  max-height: 200px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
  animation: slide-down 0.3s ease;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spinner {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 3px solid rgba(0, 213, 106, 0.2);
  border-top-color: var(--green);
  animation: spin 0.9s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.skeleton {
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 11, 9, 0.6) 0%, rgba(18, 28, 22, 0.8) 50%, rgba(7, 11, 9, 0.6) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes float-in {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 5, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 10;
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  width: min(420px, 100%);
  background: rgba(240, 242, 241, 0.95);
  border-radius: 20px;
  padding: 28px 26px 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 14px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.7);
  animation: pop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.modal-content {
  display: grid;
  gap: 10px;
  text-align: center;
  color: #1b231e;
}

.checkmark-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 6px auto 0;
  background: rgba(24, 162, 75, 0.1);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 2px rgba(24, 162, 75, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.checkmark-ring svg {
  width: 40px;
  height: 40px;
  stroke: #18a24b;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw 0.65s ease 0.15s forwards;
}

.welcome {
  margin: 6px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b231e;
  line-height: 1.2;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

@keyframes pop {
  from {
    transform: translateY(12px) scale(0.98);
    opacity: 0.5;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.handle {
  color: #3c4a41;
  margin: 0;
  font-size: 1.05rem;
}

.modal button {
  display: none;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  font-size: 1.2rem;
  cursor: pointer;
  color: #55615a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.result-screen {
  width: min(520px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: none;
  animation: float-in 0.35s ease both;
}

.result-screen.is-visible {
  display: grid;
}

.result-top {
  background: linear-gradient(135deg, #0f7f37 0%, #15a34a 55%, #1dcc66 100%);
  padding: 20px 24px 78px;
  color: #eafff2;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.result-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
}

.result-body {
  padding: 0 24px 28px;
  text-align: center;
  color: var(--ink-dark);
  display: grid;
  gap: 12px;
  animation: fade-up 0.35s ease 0.08s both;
}

.result-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: -72px auto 0;
  background: #f3f7f4;
  border: 6px solid var(--surface);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.result-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.result-avatar img.is-hidden {
  display: none;
}

.result-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2a20;
  background: radial-gradient(circle at top, #d5f7e5, #b7e9d1);
  text-transform: uppercase;
}

.result-name {
  margin: 6px 0 0;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.result-handle {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(15, 26, 20, 0.65);
  font-weight: 600;
}

.result-cta {
  margin: 12px auto 0;
  width: min(260px, 100%);
}

.ogads-locker {
  margin: 16px auto 0;
  width: min(360px, 100%);
  display: none;
}

.ogads-locker.is-visible {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  body {
    padding: 32px 16px 48px;
  }

  .cash-card {
    overflow: hidden;
    border-radius: 28px;
  }

  .cash-header {
    padding: 20px 22px 50px;
  }

  .cash-body {
    padding: 32px 24px;
    gap: 20px;
  }

  .cash-title {
    font-size: 1.6rem;
  }

  .result-body {
    padding: 0 24px 28px;
    text-align: center;
    color: var(--ink-dark);
    display: grid;
    gap: 12px;
    animation: fade-up 0.35s ease 0.08s both;
  }

  button {
    min-width: 180px;
    padding: 14px 36px;
    font-size: 0.95rem;
  }

  input[type="text"] {
    width: 100%;
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }

  .modal {
    width: min(380px, 100%);
    padding: 24px 22px;
    gap: 12px;
  }

  .checkmark-ring {
    width: 68px;
    height: 68px;
  }

  .checkmark-ring svg {
    width: 36px;
    height: 36px;
  }

  .welcome {
    font-size: 1.3rem;
  }

  .result-screen {
    width: min(380px, 100%);
  }

  .result-top {
    padding: 18px 20px 64px;
  }

  .result-body {
    padding: 0 20px 24px;
    gap: 10px;
  }

  .result-avatar {
    animation: fade-up 0.35s ease 0.08s both;
    height: 128px;
    margin-top: -62px;
  }

  .result-name {
    font-size: 1.5rem;
  }

  .result-handle {
    font-size: 0.98rem;
  }

  .result-cta {
    width: min(240px, 100%);
    margin: 8px auto 0;
  }
}

@media (max-width: 420px) {
  body {
    padding: 28px 12px 40px;
  }

  .cash-header {
    padding: 16px 18px 50px;
  }

  .cash-body {
    padding: 20px;
  }

  .cash-title {
    font-size: 1.4rem;
  }

  .cash-brand {
    font-size: 0.95rem;
  }

  .modal {
    width: 90%;
    padding: 20px 18px;
  }

  .welcome {
    font-size: 1.25rem;
  }

  .result-screen {
    width: 90%;
  }

  .result-top {
    padding: 16px 18px 58px;
  }

  .result-body {
    padding: 0 18px 20px;
  }

  .result-avatar {
    width: 116px;
    height: 116px;
    margin-top: -54px;
  }

  .result-name {
    font-size: 1.35rem;
  }
}
