* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: transparent;
    width: fit-content;
    height: fit-content;
}

body {
    font-family: 'Arial', sans-serif;
    background: transparent;
    display: block;
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: fit-content;
    height: fit-content;
}

.container {
    text-align: center;
    background: transparent !important;
    padding: 0px;
    border-radius: 0px;
    backdrop-filter: none;
    box-shadow: none;
    width: 190px;
    height: fit-content;
    overflow: visible;
    display: block;
    margin: 0;
}

h1 {
    color: white;
    font-size: 0.9em;
    margin: 0 0 2px 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
    display: block;
    font-weight: bold;
    line-height: 1.1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown {
    display: flex;
    gap: 2px;
    margin: 3px 0 0 0;
    padding: 0;
    line-height: 1.1;
    justify-content: center;
}

.time-unit {
    background: transparent;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    line-height: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.number {
    font-size: 0.9em;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    margin: 0;
    padding: 0;
    line-height: 1.1;
    display: block;
}

.label {
    font-size: 0.5em;
    color: white;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: bold;
    line-height: 1.1;
    display: block;
}

.emoji {
    font-size: 1em;
    margin: 2px 0 3px 0;
    padding: 0;
    line-height: 1.1;
    display: block;
}

.message {
    color: #ffd700;
    font-size: 0.7em;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: none;
    height: 0;
}
