body {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at top, #6691ec 0%, #020817 80%);
    font-family: "Varela Round", sans-serif;
    color: #fdfdfd;
    margin: 0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: transparent url("https://www.transparenttextures.com/patterns/stardust.png") repeat;
    opacity: 0.6;
    animation: twinkle 15s infinite linear;
    z-index: -2;
}

/* Smaller, slower stars layer */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: transparent url("https://www.transparenttextures.com/patterns/stardust.png") repeat;
    opacity: 0.3;
    animation: twinkle 30s infinite linear reverse;
    z-index: -1;
    transform: scale(1.5);
}

@keyframes twinkle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-100px, -100px) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-200px, -200px) scale(1);
        opacity: 0.6;
    }
}

h1 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    color: #ff347f;
    letter-spacing: 1px;
    margin-top: 40px;
}

h2 {
    margin: 0 0 5px;
    font-size: 26px;
    color: #e3e8ff;
}

select {
    font-family: "Varela Round", sans-serif;
    font-size: 16px;
    color: #0b1a3a;
    background-color: #fdfdfd;
    border: 2px solid #ff347f;
    border-radius: 10px;
    padding: 10px 12px;
    width: 260px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:hover {
    background-color: #fff9e6;
    border-color: #ffda77;
}

option {
    color: #0b1a3a;
    background-color: #fff;
}

.container {
    max-width: 600px;
    background: rgba(63, 73, 94, 0.85);
    border: 1px solid rgba(255, 204, 112, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin: 80px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 204, 112, 0.3);
}

.time {
    font-size: 48px;
    font-weight: 600;
    color:#f48db4;
    text-shadow: 0 0 10px rgba(255, 204, 112, 0.3);
}

.time small {
    vertical-align: middle;
    font-size: 24px;
    opacity: 0.8;
}

date {
    opacity: 0.7;
    font-size: 18px;
    color: #cdd6ff;
}
a{
    color:#ff347f;
}

footer {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}