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

:root {
  --black: #080808;
  --black-2: #111111;
  --gold: #d6ad5c;
  --gold-light: #f2d38c;
  --white: #ffffff;
  --muted: #a7a7a7;
  --line: rgba(214, 173, 92, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(214,173,92,.18), transparent 31%),
    linear-gradient(145deg, #050505 0%, #0d0d0d 48%, #050505 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100%, 620px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 20px 28px;
  position: relative;
  z-index: 2;
}

.background-shape {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
  pointer-events: none;
}

.shape-one {
  background: var(--gold);
  top: -150px;
  left: -190px;
}

.shape-two {
  background: #ffffff;
  right: -220px;
  bottom: -120px;
}

.profile {
  text-align: center;
}

.logo-box {
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(214,173,92,.72);
  box-shadow:
    0 0 0 5px rgba(214,173,92,.06),
    0 15px 45px rgba(0,0,0,.45);
  display: grid;
  place-items: center;
}

.logo-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

h1 {
  font-size: 28px;
  letter-spacing: 1.2px;
  font-weight: 800;
}

.profile > p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .3px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(214,173,92,.07);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
}

.status i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #67d58a;
  box-shadow: 0 0 8px #67d58a;
}

.links {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.link {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  backdrop-filter: blur(15px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.link:hover {
  transform: translateY(-3px);
  border-color: rgba(214,173,92,.65);
  background: linear-gradient(135deg, rgba(214,173,92,.14), rgba(255,255,255,.035));
}

.link.featured {
  border-color: rgba(214,173,92,.62);
  background: linear-gradient(135deg, rgba(214,173,92,.18), rgba(255,255,255,.035));
}

.icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(214,173,92,.4);
  background: rgba(0,0,0,.4);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
}

.copy {
  flex: 1;
  min-width: 0;
}

.copy strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrow {
  font-size: 21px;
  color: #8f8f8f;
  transition: .2s ease;
}

.link:hover .arrow {
  color: var(--gold-light);
  transform: translateX(4px);
}

.promo {
  margin-top: 22px;
  padding: 25px 22px;
  border: 1px solid rgba(214,173,92,.22);
  border-radius: 20px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(214,173,92,.10), rgba(255,255,255,.025));
}

.promo-top {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.2px;
}

.promo h2 {
  font-size: 19px;
  letter-spacing: -.2px;
}

.promo p {
  max-width: 460px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contact {
  margin-top: 13px;
  padding: 17px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}

.contact-label {
  display: block;
  color: #777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  margin-bottom: 6px;
}

.contact a {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
}

footer {
  text-align: center;
  margin-top: 25px;
  color: #656565;
  font-size: 10px;
}

footer small {
  display: block;
  margin-top: 5px;
  color: #454545;
}

@media (max-width: 420px) {
  .container {
    padding: 32px 15px 22px;
  }

  .logo-box {
    width: 112px;
    height: 112px;
  }

  h1 {
    font-size: 24px;
  }

  .link {
    min-height: 70px;
  }
}
