:root{
  --bg: #000000;
  --bg2:#000000;
  --text:#ffffff;
  --muted: rgba(255,255,255,.78);
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);
  --pink: #e43d8b; /* close to the logo pink */
}

html{
  min-height:100%;
  background: linear-gradient(160deg, var(--bg), var(--bg2));
  background-color: var(--bg2);
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background-repeat:no-repeat;
  background-color: var(--bg2);
}

.wrap{
  min-height:95vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

@media(max-width:600px){
    .wrap{
        min-height:unset!important
    }
}

.card{
  width:min(400px, 100%);
  border: 1px solid var(--pink);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.logo{
  padding:5px 5px 5px;
  display:flex;
  justify-content:center;
}

.logo img{
  width:min(260px, 82%);
  height:auto;
  border-radius: 12px;
}

.content{
  padding: 10px 28px 28px;
  text-align:center;
  margin-top:-30px;
}

h1{
  margin-bottom:5px;
  margin-top:-40px;
  font-size: 30px;
  letter-spacing: -0.02em;
  padding:0px;
}

h2{
    font-size: 20px;
    padding:0px;
    margin-bottom:30px;
}

.lead{
  margin:0 auto 18px;
  max-width: 52ch;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.details{
  margin: 0 auto 18px;
  max-width: 52ch;
  text-align:left;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  text-align: center;
}

.details p{
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.55;
}

.details strong{
  color: var(--text);
}

a{
  color: var(--text);
}

a:hover{
  color: var(--pink);
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  margin-top: 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration:none;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.btn:hover,
.btn:focus{
  transform: translateY(-1px);
  border-color: rgba(228,61,139,.55);
  background: rgba(228,61,139,.10);
  outline:none;
}

.btn--icon{
  min-width: 170px;
}

.btn-icon{
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-text{
  font-weight: 700;
}

.footer{
  margin: 18px 0 0;
  color: rgba(255,255,255,.70);
}
