@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    margin: 0;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.input-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

#url-input {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 70%;
}

#url-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.time-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

#time-display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 80px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    padding: 1rem;
}

#fetch-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    background: #ff6b6b;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    letter-spacing: 1px;
}

#fetch-btn:hover {
    background: #ff4757;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

#fetch-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}