body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:#0f172a;
  color:white;
}

.app{
  max-width:700px;
  margin:auto;
  padding:40px 20px;
}

.card{
  background:#111827;
  border:1px solid #1e293b;
  border-radius:20px;
  padding:30px;
}

.hero{
  text-align:center;
}

.shield{
  font-size:60px;
}

.hero h1{
  margin:10px 0;
  font-size:48px;
}

.subtitle{
  color:#94a3b8;
}

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin:25px 0;
}

.badges span{
  background:#1e293b;
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
}

input,
select,
button{
  width:100%;
  padding:15px;
  margin-top:15px;
  border-radius:12px;
  border:none;
  box-sizing:border-box;
}

input,
select{
  background:#0f172a;
  color:white;
  border:1px solid #334155;
}

button{
  background:#22c55e;
  color:white;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

button:hover{
  background:#16a34a;
}

#result{
  margin-top:25px;
}

.verdict{
  padding:30px;
  border-radius:16px;
  text-align:center;
}

.safe{
  background:#052e16;
  border:2px solid #22c55e;
}

.scam{
  background:#450a0a;
  border:2px solid #ef4444;
}

.blocked{
  background:#3f3f46;
  border:2px solid #e5e7eb;
}

.warning{
  background:#451a03;
  border:2px solid #f97316;
}

.caution{
  background:#422006;
  border:2px solid #facc15;
}

.verdict h2{
  margin-bottom:20px;
  font-size:48px;
  font-weight:700;
}
.verdict p{
  font-size:20px;
  line-height:1.6;
}

.safe{
  background:linear-gradient(
    135deg,
    #052e16,
    #064e3b
  );
  border:2px solid #22c55e;
  box-shadow:0 0 30px rgba(34,197,94,0.25);
}

.scam{
  background:linear-gradient(
    135deg,
    #450a0a,
    #7f1d1d
  );
  border:2px solid #ef4444;
  box-shadow:0 0 30px rgba(239,68,68,0.25);
}
.blocked{
  background:linear-gradient(
    135deg,
    #27272a,
    #3f3f46
  );
  border:2px solid #d4d4d8;
  box-shadow:0 0 30px rgba(255,255,255,0.15);
}
.warning{
  background:linear-gradient(
    135deg,
    #451a03,
    #7c2d12
  );

  border:2px solid #f97316;

  box-shadow:0 0 30px rgba(249,115,22,0.25);
}