
*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:linear-gradient(180deg,#0f1720,#0b0f15);
color:white;
display:flex;
align-items:center;
justify-content:center;
min-height:100vh;
padding:20px;
}

.container{
max-width:900px;
width:100%;
text-align:center;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
padding:40px;
border-radius:20px;
backdrop-filter:blur(10px);
}

h1{
font-size:42px;
margin-bottom:10px;
}

.subtitle{
color:#cfcfcf;
margin-bottom:30px;
}

.badge{
margin-bottom:15px;
color:#7CFF9B;
}

.actions{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:30px;
}

.card{
background:rgba(255,255,255,0.06);
padding:25px;
border-radius:15px;
border:1px solid rgba(255,255,255,0.08);
}

.discord{
text-decoration:none;
color:white;
}

.label{
font-size:12px;
letter-spacing:1px;
opacity:.7;
margin-bottom:8px;
}

.value{
font-size:22px;
font-weight:bold;
margin-bottom:10px;
}

.copyBtn{
padding:10px 16px;
border:none;
border-radius:8px;
background:#5ee07a;
cursor:pointer;
font-weight:bold;
}

.hint{
margin-top:8px;
font-size:12px;
opacity:.7;
}

.status{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

.statusCard{
background:rgba(255,255,255,0.05);
padding:20px;
border-radius:12px;
}

footer{
margin-top:30px;
font-size:12px;
opacity:.6;
}
