@font-face {
    font-family: 'Orbitron';
    src: url('fonts/orbitron-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/orbitron-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
}

.countdown-container {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    width: 90%;
    max-width: 1000px;
    margin: 20px;
}

.countdown-timer {
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.4;
}

.off-work-message {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Tablet styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .countdown-timer {
        font-size: 5rem;
    }
    
    .title {
        font-size: 1.2rem;
    }
    
    .off-work-message {
        font-size: 2.5rem;
    }
    
    .countdown-container {
        padding: 30px;
    }
}

/* Mobile styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    .countdown-timer {
        font-size: 3rem;
        letter-spacing: 0.05em;
    }
    
    .title {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .off-work-message {
        font-size: 1.8rem;
    }
    
    .countdown-container {
        padding: 20px;
        border-radius: 15px;
    }
    
    .footer {
        font-size: 0.6rem;
        bottom: 10px;
    }
}
