.dcp-calendar-container {
    width: 100%;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
}

.dcp-calendar-days {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.dcp-calendar-day-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.dcp-calendar-day-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.dcp-calendar-day-btn.active {
    background: #2196F3;
    color: #fff;
    border-color: #2196F3;
}

.dcp-calendar-content {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin-top: 10px;
}

.dcp-calendar-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dcp-calendar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas por defecto para móviles */
    gap: 15px;
}

.dcp-calendar-list li {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.dcp-calendar-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.dcp-calendar-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
}

.dcp-calendar-poster {
    position: relative;
    width: 100%;
    padding-top: 150%; /* Relación de aspecto 2:3 */
    overflow: hidden;
}

.dcp-calendar-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.dcp-calendar-title-box {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 4px;
    z-index: 2;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.dcp-calendar-list li:hover .dcp-calendar-title-box {
    transform: translateY(0);
    opacity: 1;
}

.dcp-calendar-title {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.dcp-calendar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    transition: all 0.3s ease;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.dcp-calendar-list li:hover .dcp-calendar-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.dcp-calendar-list li:hover .dcp-calendar-poster img {
    transform: scale(1.05);
}

/* Estilo para la hora de lanzamiento */
.release-time {
    display: inline-block;
    background: #2196F3;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    margin-bottom: 8px;
    font-weight: normal;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-shadow: none;
}

.dcp-calendar-list li:hover .release-time {
    opacity: 1;
    transform: translateY(0);
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablets (4 columnas) */
@media (min-width: 768px) {
    .dcp-calendar-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .dcp-calendar-title-box {
        padding: 10px 15px;
    }
    
    .dcp-calendar-title {
        font-size: 15px;
    }
}

/* Computadoras (6 columnas) */
@media (min-width: 1200px) {
    .dcp-calendar-list {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }
    
    .dcp-calendar-title-box {
        padding: 12px 18px;
    }
    
    .dcp-calendar-title {
        font-size: 16px;
    }
}

/* Ajustes específicos para móviles pequeños */
@media (max-width: 480px) {
    .dcp-calendar-container {
        padding: 10px;
    }
    
    .dcp-calendar-days {
        gap: 5px;
    }
    
    .dcp-calendar-day-btn {
        min-width: 80px;
        padding: 8px;
        font-size: 13px;
    }
    
    .dcp-calendar-content {
        padding: 10px;
    }
    
    .dcp-calendar-list {
        gap: 10px;
    }
    
    .dcp-calendar-title-box {
        padding: 6px 10px;
    }
    
    .dcp-calendar-title {
        font-size: 12px;
    }
    
    .release-time {
        font-size: 0.8em;
        padding: 1px 4px;
    }
} 