body {
  margin:0;
  font-family:Arial, sans-serif;
  background:#020617;
  color:white;
}

/* HEADER */
.header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.logo {
  font-size:22px;
  font-weight:bold;
}
.logo span {
  color:#facc15;
  font-family:cursive;
}

/* SOCIAL */
.socials {
  display:flex;
  gap:10px;
}
.social {
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#0f172a;
  font-size:20px;
  box-shadow:0 0 15px rgba(255,255,255,0.2);
}

/* TITLE */
.title {
  text-align:center;
  margin:20px 0;
}
.title span {
  color:#facc15;
}

/* CONTAINER */
.container {
  padding:15px;
}

/* CARD */
.card {
  background:#0f172a;
  border-radius:16px;
  padding:15px;
  margin-bottom:15px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 0 15px rgba(34,211,238,0.2);
}

.rank {
  background:gold;
  color:black;
  padding:4px 8px;
  border-radius:6px;
  font-weight:bold;
  display:inline-block;
  margin-bottom:10px;
}

/* LOGO */
.logo-box img {
  width:90px;
  padding:8px;
  border-radius:10px;
}

/* BONUS */
.bonus {
  color:#22d3ee;
  font-weight:bold;
  margin:10px 0;
}

.verified {
  font-size:11px;
  color:#22c55e;
  border:1px solid #22c55e;
  padding:2px 6px;
  border-radius:6px;
  margin-left:6px;
}

/* FREE */
.free {
  border:2px solid gold;
  padding:8px;
  border-radius:10px;
  margin:8px 0;
  animation:blink 1.5s infinite;
}
@keyframes blink {
  50%{opacity:0.6;}
}

/* CODE */
.code {
  border:1px dashed #22c55e;
  padding:6px;
  border-radius:8px;
  color:#22c55e;
}

.copy {
  background:#22d3ee;
  color:black;
  padding:6px;
  border-radius:8px;
  margin-top:5px;
  cursor:pointer;
  text-align:center;
}

/* BUTTON */
.btn {
  background:#22c55e;
  padding:12px;
  text-align:center;
  border-radius:12px;
  margin-top:10px;
  font-weight:bold;
}

/* DETAILS */
.details-btn {
  margin-top:10px;
  background:#1e293b;
  padding:10px;
  border-radius:12px;
  text-align:center;
  cursor:pointer;
}

.details {
  max-height:0;
  overflow:hidden;
  transition:0.4s;
  font-size:13px;
  margin-top:10px;
}

.summary {
  border:1px solid #22d3ee;
  padding:8px;
  border-radius:10px;
  margin-top:8px;
}

.info {
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-top:10px;
}

/* TRUST */
.trust-section {
  margin:30px 15px;
}
.trust-title {
  text-align:center;
  font-weight:bold;
  margin-bottom:15px;
  color:#facc15;
}
.trust-box {
  background:#0f172a;
  border-radius:14px;
  padding:15px;
  margin-bottom:12px;
  box-shadow:0 0 15px rgba(34,211,238,0.15);
}
.trust-box h3 {
  margin:0 0 8px 0;
  color:#22d3ee;
  font-size:14px;
}
.trust-box p {
  font-size:13px;
  color:#cbd5f5;
}

/* FOOTER */
.footer {
  text-align:center;
  font-size:12px;
  margin:20px;
}