@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:#1a1b1e;
    color:white;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:25px;
}

.card{
    width:100%;
    max-width:520px;

    background:#2b2d31;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.45);
}

.icon{
    width:85px;
    height:85px;

    margin:auto;

    border-radius:50%;

    background:#313338;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:42px;

    margin-bottom:20px;
}

.badge{
    display:inline-block;

    background:#5865F2;

    padding:6px 12px;

    border-radius:50px;

    font-size:12px;

    letter-spacing:1px;

    font-weight:700;

    margin-bottom:18px;
}

h1{
    font-size:34px;
    margin-bottom:15px;
}

.description{
    color:#b5bac1;
    line-height:1.7;
    margin-bottom:25px;
}

.warning{
    background:#232428;

    border-left:4px solid #f0b232;

    color:#d9d9d9;

    padding:15px;

    border-radius:10px;

    text-align:left;

    margin-bottom:25px;
}

button{
    width:100%;

    border:none;

    border-radius:10px;

    background:#5865F2;

    color:white;

    padding:16px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    transition:all .25s ease;
}

button:hover{
    background:#4752C4;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(88,101,242,.35);
}

button i{
    font-size:22px;
}

.expire{
    margin-top:20px;

    color:#949ba4;

    font-size:14px;
}

.expire i{
    margin-right:6px;
}

footer{
    margin-top:30px;

    text-align:center;

    color:#8e9297;

    font-size:14px;

    line-height:1.7;
}

footer a{
    color:#5865F2;
    text-decoration:none;
    font-weight:600;
    transition:color .2s ease;
}

footer a:hover{
    color:#7b86ff;
}

strong{
    color:white;
}