body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    text-align: center;
}

h1 {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    margin: 0;
    width: 100%;
}

.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
}

.container p {
    margin: 0;
    padding: 10px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
}

.countdown {
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.countdown h2 {
    margin: 0;
}

.highlight {
    color: #66cc66;
    font-weight: bold;
    font-size: 50px;
}

#countdown {
    text-align: center;
}

.countdown-time {
    font-size: 70px;
    margin-bottom: 0.2em;
}

.countdown-labels {
    font-size: 1.2em;
    color: #bbb;
}

.countdown-labels span {
    margin: 0 0.5em;
}

.time {
    font-size: 1.5em;
    margin: 10px 0;
}

.current-time {
    color: #66cc66;
    font-weight: bold;
}

.header {
    background-color: #222;
    border-bottom: 1px solid #444;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-container img {
    height: 60px;
    margin-right: 15px;
    border-radius: 10px;
}

.logo-container h1 {
    text-align: left;
    font-size: 24px;
    margin: 0;
    background-color: transparent;
    color: #fff;
}

#menu-toggle {
    display: none;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav {
    display: flex;
    gap: 15px;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.nav a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #222;
        position: absolute;
        top: 60px;
        left: 0;
        border-bottom: 1px solid #444;
        z-index: 1000;
    }

    .nav a {
        padding: 15px;
        border-bottom: 1px solid #444;
        text-align: center;
        display: block;
        color: #fff;
    }

    #menu-toggle {
        display: block;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 10%;
        text-align: center;
        font-weight: bold;
        padding: 10px 15px;
        font-size: 100%;
    }

    .nav.show {
        display: flex;
    }

    .logo-container img {
        display: none;
    }

    .logo-container h1 {
        margin: 0 auto;
        text-align: right;
        flex: 1;
        font-size: calc(1.5vw + 1.5vh);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .countdown-time {
        font-size: 15vw;
    }
}
