body {
    background: linear-gradient(to bottom right, #1e0d1b, #2d1e10);
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    overflow-x: hidden;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid #ff9e00;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    position: relative;
    animation: fadeIn 1s ease;
}

.disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 25px;
    padding: 15px;
    font-size: 12px;
    color: #e0e0e0;
    border-radius: 10px;
}


h1 {
    font-size: 28px;
    color: #ffcb6b;
    margin-bottom: 10px;
}

p {
    color: #f8e8d6;
    font-size: 16px;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ff9e00;
    border-radius: 50px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
}

button {
    background-color: #7c3aed;
    color: white;
    padding: 10px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 5px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #a855f7;
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

#result {
    margin-top: 20px;
    color: #f1f1f1;
    display: none;
    animation: fadeIn 1s ease;
}

.footer {
    color: #a3e635;
    margin-top: 30px;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styling for loading spinner */
.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #FF9E00;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Media query for responsiveness */
@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .card {
        padding: 20px 15px;
        box-sizing: border-box;
    }

    input[type="text"] {
        width: 90%;
    }

    button {
        width: 80%;
    }

    .footer {
        padding: 10px 0;
        font-size: 14px;
    }
}