/* Контейнер */
.hoto-container {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 28px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 20px 0;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    color: white;
    position: relative;
    overflow: hidden;
}

.hoto-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.hoto-container > * {
    position: relative;
    z-index: 2;
}

/* Заголовок */
.hoto-header {
    margin-bottom: 24px;
    text-align: center;
    padding: 0 10px;
}

.hoto-title {
    margin: 0;
    color: white;
    font-size: 1.6em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

/* Контент */
.hoto-content {
    margin-bottom: 0;
}

.hoto-holidays-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.hoto-holiday-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    margin: 0;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.hoto-holiday-item::before {
    content: '🎉';
    margin-right: 10px;
    font-size: 1.1em;
}

.hoto-holiday-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.hoto-no-holidays {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px dashed rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    font-size: 1.1em;
}

/* Уведомления */
.hoto-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100001;
    background: #4CAF50;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-weight: 500;
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.hoto-error {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 10px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Адаптивность */

/* Tablet */
@media (max-width: 768px) {
    .hoto-container {
        padding: 24px;
        margin: 16px 0;
        border-radius: 14px;
    }
    
    .hoto-title {
        font-size: 1.4em;
    }
    
    .hoto-holiday-item {
        padding: 14px 18px;
        font-size: 0.95em;
    }
    
    .hoto-holidays-list {
        gap: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hoto-container {
        padding: 20px;
        margin: 12px 0;
        border-radius: 12px;
    }
    
    .hoto-title {
        font-size: 1.3em;
    }
    
    .hoto-holiday-item {
        padding: 12px 16px;
        font-size: 0.9em;
        margin: 0;
    }
    
    .hoto-holidays-list {
        gap: 8px;
    }
    
    .hoto-no-holidays {
        padding: 30px 15px;
        font-size: 1em;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hoto-container {
        padding: 16px;
    }
    
    .hoto-title {
        font-size: 1.2em;
    }
    
    .hoto-holiday-item {
        padding: 10px 14px;
        font-size: 0.85em;
    }
    
    .hoto-holiday-item::before {
        margin-right: 8px;
        font-size: 1em;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hoto-holiday-item {
    animation: fadeInUp 0.5s ease-out;
}

.hoto-holiday-item:nth-child(1) { animation-delay: 0.1s; }
.hoto-holiday-item:nth-child(2) { animation-delay: 0.2s; }
.hoto-holiday-item:nth-child(3) { animation-delay: 0.3s; }
.hoto-holiday-item:nth-child(4) { animation-delay: 0.4s; }
.hoto-holiday-item:nth-child(5) { animation-delay: 0.5s; }