
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
}
.btn i {
    margin-right: 8px;
}
.btn.disabled {
    background: #2c2f33;
    cursor: not-allowed;
}


.btn.disabled:hover::after {
    content: attr(title);
    position: absolute;
    background: #111;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 30px;
    white-space: nowrap;
}


.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
