body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #a83279, #d38312);
    background-size: 400% 400%;
    animation: gradientRotate 15s ease infinite;
    margin: 0;
    padding: 20px;
    color: white;
    overflow-x: hidden;
}
*{
    cursor: default;
}
*::selection{
    background-color: #924b001e;
}
@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 600px;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: black;
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    color: #ffb347;
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #b24592, #f15f79);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

input[type="text"] {
    width: 95%;
    padding: 15px;
    border-radius: 5px;
    border: 2px solid #b24592;
    margin-bottom: 15px;
    font-size: 1em;
    transition: border 0.3s;
}

input[type="text"]:focus {
    border-color: #f15f79;
    outline: none;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #9d50bb, #6e48aa);
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.result {
    margin-top: 20px;
    font-size: 1.5em;
    text-align: center;
    color: #f15f79;
    font-weight: 900;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

table,
th,
td {
    border: 1px solid #ccc;
}

th,
td {
    padding: 12px;
    text-align: center;
}

th {
    background: linear-gradient(135deg, #ff8c00, #ff2e63);
    color: white;
}
th:hover{
    background: linear-gradient(-135deg, #ff8c00, #ff2e63);

}

td {
    background-color: #f9f9f9;
    transition: background-color 0.3s;
}

td:hover {
    background-color: #ffe3b0;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    z-index: 1000;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    button {
        font-size: 1em;
    }
}