.blok-calendar {
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.calendar-container {
    max-width: 400px;
    margin: 0 auto 40px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calendar-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-wrapper {
    width: 100%;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 10px;
}

.day-name {
    text-align: center;
    font-weight: bold;
    color: #666;
    padding: 10px 5px;
    font-size: 14px;
    background: #f8f9fa;
    border-radius: 5px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.calendar-day:hover {
    background: #e3f2fd;
    transform: scale(1.05);
}

.calendar-day.other-month {
    color: #ccc;
    background: #f5f5f5;
}

.calendar-day.today {
    background: #2196f3;
    color: white;
    font-weight: bold;
}

.calendar-day.event-day {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
}

.calendar-day.event-day::after {
    content: '🎉';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    background: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
}

.countdown-container {
    text-align: center;
    color: #273668;
}

.countdown-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.time-unit {
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.time-number {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.time-label {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 30px;
    font-weight: bold;
    opacity: 0.7;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 0.7; }
    51%, 100% { opacity: 0.2; }
}

.event-date {
    font-size: 20px;
    font-weight: 500;
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blok-calendar {
        padding: 20px 10px;
    }
    
    .calendar-container {
        max-width: 350px;
        padding: 15px;
    }
    
    .calendar-title {
        font-size: 20px;
    }
    
    .countdown-title {
        font-size: 22px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 15px 10px;
    }
    
    .time-number {
        font-size: 28px;
    }
    
    .time-label {
        font-size: 12px;
    }
    
    .event-date {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 5px;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 10px 8px;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .time-separator {
        font-size: 24px;
    }
}
