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

body {
    font-family: 'Inter', sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.time-unit {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}



footer {
    margin-top: 2rem;
}

footer p {
    font-size: 1rem;
    margin: 0;
}

footer a {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.kodrish-logo {
    height: 24px;
    width: auto;
    vertical-align: middle;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1rem 0.5rem;
        min-width: 80px;
    }
    
    .number {
        font-size: 2rem;
    }
    

}