.platter-container {
    position: relative;
    width: 1086px;
    height: 41px;
}
@font-face {
    font-family: 'SF Pro';
    src: local('SF Pro Regular'), local('SFPro-Regular'),
         url('assets/fonts/SF-Pro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#d {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400 !important;
    /* font-size: 36px !important; */
}  

#d1 {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
} 

.Value {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
}

#current-time {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}  

#current-date {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
} 

body {
    position: relative;
    background-image: url('https://cdna.artstation.com/p/assets/images/images/045/041/806/large/ido-hadary-.jpg?1641797565');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background: rgba(0,0,0, 0.5);
    backdrop-filter: blur(100px);
}


#input-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 100%;
    height: 100%;
    
    border: none;
    outline: none;
    
    background: transparent;
    color: rgba(14, 13, 13, 0.95);  /* Adjust text color for visibility */
    
    font-size: 16px;
    padding: 10px 20px;
    
    text-align: left;
    z-index: 10; /* Ensure it's above the SVG */
}

#input-box::placeholder {
    color: rgba(33, 31, 31, 0.7); /* Light color for visibility */
}

.icon-button {
    background: none;
    border: none;
    padding: 9px;  /* Expands clickable area */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;  
    height: 45px;
}

.icon-img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease-in-out;
}

.icon-button:hover .icon-img {
    transform: scale(1.1); /* Zoom-in effect */
}

/* Full-screen overlay */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

/* Progress bar container */
.progress-container {
    width: 60%;
    height: 20px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Progress bar */
.progress-bar {
    height: 100%;
    width: 0%; /* Start at 0% and update via JS */
    background: rgb(153, 197, 153);
    transition: width 0.0001s linear; /* Smooth transition */
}

/* Start button */
.start-btn {
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background: limegreen;
    border: none;
    cursor: pointer;
    display: none; /* Hidden initially */
}

/* Blur effect on body before loading */
.blurred {
    filter: blur(10px);
    transition: filter 1s ease-in-out;
}