body {
    background-color: #181825;
    color: #cdd6f4;
    font-family: monospace;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.main-container {
    background-color: #1e1e2e;
    padding: 20px;
    border: 1px solid #45475a;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

a {
    color: #b4befe;
    text-decoration: none;
}

a:hover {
    color: #89b4fa;
}

.button {
    color: #cba6f7;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin: 5px;
}

.button:hover {
    text-decoration: underline;
}

.button2 {
    color: #b4befe;
    background: none;
    border: none;
    cursor: pointer;
}

.button2:hover {
    color: #89b4fa;
    text-decoration: underline;
}

.button4 {
    color: #cdd6f4;
    background: none;
    border: none;
    cursor: pointer;
}

.button4:hover {
    color: #bcc4de;
    text-decoration: underline;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

h1 {
    margin: 0;
}

h6 {
    margin: 0;
    font-size: 0.6rem;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.countdown {
    font-size: 3rem;
    font-weight: bold;
    color: #cdd6f4;
}

.secondary {
    font-size: 1.75rem;
    color: #bac2de;
}

.third {
    font-size: 1.25rem;
    color: #a6adc8;
}

.fourth {
    font-size: 1rem;
    color: #9399b2;
}

.disclaimer {
    font-size: 0.8rem;
    color: #7f849c;
    margin-top: 1rem;
    font-style: italic;
}