*{
    margin: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}

.hero{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, #08001f, #30197d);
    color: #fff;
    position: relative;
}

.container{
    width: 800px;
    height: 280px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clock{
    width: 100%;
    height: 100%;
    background: rgba(235, 0, 255, 0.11);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px);
}

.container::before{
    content: '';
    width: 180px;
    height: 180px;
    background: #f41b75;
    border-radius: 5px;
    position: absolute;
    left: -50px;
    top: -50px;
    z-index: -1;
}

.container::after{
    content: '';
    width: 180px;
    height: 180px;
    background: #419aff;
    border-radius: 50%;
    position: absolute;
    right: -30px;
    bottom: -50px;
    z-index: -1;
}

.clock span{
    font-size:80px;
    width: 110px;
    display: inline-block;
    text-align: center;
    position: relative;
}

.clock span::after{
    font-size: 16px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

#hrs::after{
    content: 'HOURS';
}

#min::after{
    content: 'MINUTES'
}

#sec::after{
    content: 'SECONDS';
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 700px;
    }
    .clock span {
        font-size: 70px;
        width: 100px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 600px;
    }
    .clock span {
        font-size: 60px;
        width: 90px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 500px;
        height: 250px;
    }
    .clock span {
        font-size: 50px;
        width: 80px;
    }
    .container::before, .container::after {
        width: 150px;
        height: 150px;
    }

    .timezone-selector {
        margin-top: 20px;
        text-align: center;
    }
    
    .timezone-selector label {
        font-size: 16px;
        color: #fff;
        margin-right: 10px;
    }
    
    .timezone-selector select {
        padding: 5px 10px;
        font-size: 16px;
        border-radius: 5px;
        border: none;
    }
}

@media (max-width: 576px) {
    .container {
        width: 400px;
        height: 220px;
    }
    .clock span {
        font-size: 40px;
        width: 70px;
    }
    .container::before, .container::after {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 320px;
        height: 200px;
    }
    .clock span {
        font-size: 35px;
        width: 60px;
    }
    .container::before, .container::after {
        width: 100px;
        height: 100px;
    }
}
