* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff6a00, #ffcc00);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

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

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

.container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    text-align: center;
    animation: fadeIn .5s ease-in-out;
    transform: scale(1);
    transition: transform 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

h1 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 2.5em;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.input-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

input[type="text"] {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #ffcc00;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}

input[type="text"]::placeholder {
    color: #ddd;
}

input[type="text"]:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.7);
}

button {
    margin: 0 auto;
    background: linear-gradient(45deg, #ff6a00, #ffcc00);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.4);
    transition: all 0.4s ease;
    transform: scale(1);
}

button:hover {
    transform: scale(1.1);
    background: linear-gradient(-45deg, #ff6a00, #ffcc00);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.6);
}

.output {
    margin-top: 20px;
    font-size: 18px;
    color: #ffcc00;
    text-align: center;
}

.output a {
    color: #f13054;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    border: 2px ridge #000;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #ff0;
    transform: backgroundColor 5s ease;
    box-shadow: 0 0 8px rgba(255, 255, 0, 0.5);
}

.output a:hover {
    color: #ff0;
    background-color: transparent;
    box-shadow: none;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

    input[type="text"] {
        padding: 10px;
    }

    button {
        padding: 10px 15px;
    }
}