* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(45deg, #0f172a, #1e293b);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 5vw, 4rem);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
}

.flag {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.flag img {
    height: 80px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: -0.5px;
    text-align: center;
}

.countdown-wrapper {
    display: flex;
    gap: clamp(1rem, 3vw, 3rem);
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-block {
    text-align: center;
    min-width: clamp(90px, 25vw, 120px);
}

.number {
    font-family: 'SF Mono', 'Roboto Mono', monospace;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(14, 165, 233, 0.2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.label {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
    .countdown-wrapper {
        gap: 1rem;
    }

    .countdown-block {
        flex: 1 1 auto;
    }
}