
/* DEVINEPAW PREMIUM COIN FIX */

.coin{
position:relative;
width:240px;
height:240px;
border-radius:50%;
border:0;
background:transparent;
padding:0;
margin:0 auto 12px;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
animation:float 3s ease-in-out infinite;
}

.coin img{
width:180px;
height:180px;
object-fit:contain;
background:transparent;
border-radius:50%;
display:block;
filter:drop-shadow(0 0 25px rgba(255,215,0,.35));
animation:pulse 2s infinite;
}

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-8px);}
100%{transform:translateY(0px);}
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.04);}
100%{transform:scale(1);}
}
